Rollup merge of #35182 - frewsxcv:nulerror, r=steveklabnik

Add doc example for `std::ffi::NulError::nul_position`.

None
This commit is contained in:
Guillaume Gomez 2016-08-05 16:12:55 +02:00 committed by GitHub
commit 8a923d48e2

View File

@ -356,6 +356,18 @@ impl Borrow<CStr> for CString {
impl NulError {
/// Returns the position of the nul byte in the slice that was provided to
/// `CString::new`.
///
/// # Examples
///
/// ```
/// use std::ffi::CString;
///
/// let nul_error = CString::new("foo\0bar").unwrap_err();
/// assert_eq!(nul_error.nul_position(), 3);
///
/// let nul_error = CString::new("foo bar\0").unwrap_err();
/// assert_eq!(nul_error.nul_position(), 7);
/// ```
#[stable(feature = "rust1", since = "1.0.0")]
pub fn nul_position(&self) -> usize { self.0 }