Struct drone_core::ffi::NulError [−][src]
An error indicating that an interior nul byte was found.
While Rust strings may contain nul bytes in the middle, C strings can’t, as that byte would effectively truncate the string.
This error is created by the new
method on CString
.
See its documentation for more.
Examples
use drone_core::ffi::{CString, NulError}; let _: NulError = CString::new(b"f\0oo".to_vec()).unwrap_err();
Implementations
impl NulError
[src][−]
pub fn nul_position(&self) -> usize
[src][−]
Returns the position of the nul byte in the slice that caused
CString::new
to fail.
Examples
use drone_core::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);
pub fn into_vec(self) -> Vec<u8>
[src][−]
Consumes this error, returning the underlying vector of bytes which generated the error in the first place.
Examples
use drone_core::ffi::CString; let nul_error = CString::new("foo\0bar").unwrap_err(); assert_eq!(nul_error.into_vec(), b"foo\0bar");
Trait Implementations
impl Clone for NulError
[src][+]
impl Debug for NulError
[src][+]
impl Display for NulError
[src][+]
impl Eq for NulError
[src]
impl PartialEq<NulError> for NulError
[src][+]
impl StructuralEq for NulError
[src]
impl StructuralPartialEq for NulError
[src]
Auto Trait Implementations
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src][+]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> From<T> for T
[src][+]
impl<T, U> Into<U> for T where
U: From<T>,
[src][+]
U: From<T>,
impl<T> Same<T> for T
[src]
type Output = T
Should always be Self
impl<T> ToOwned for T where
T: Clone,
[src][+]
T: Clone,
impl<T> ToString for T where
T: Display + ?Sized,
[src][+]
T: Display + ?Sized,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src][+]
U: Into<T>,
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src][+]
U: TryFrom<T>,