Struct std::ffi::FromBytesWithNulError 1.10.0[−][src]
pub struct FromBytesWithNulError { /* fields omitted */ }Expand description
An error indicating that a nul byte was not in the expected position.
The slice used to create a CStr must have one and only one nul byte,
positioned at the end.
This error is created by the CStr::from_bytes_with_nul method.
See its documentation for more.
Examples
use std::ffi::{CStr, FromBytesWithNulError}; let _: FromBytesWithNulError = CStr::from_bytes_with_nul(b"f\0oo").unwrap_err();Run
Trait Implementations
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
Auto Trait Implementations
impl RefUnwindSafe for FromBytesWithNulErrorimpl Send for FromBytesWithNulErrorimpl Sync for FromBytesWithNulErrorimpl Unpin for FromBytesWithNulErrorimpl UnwindSafe for FromBytesWithNulErrorBlanket Implementations
Mutably borrows from an owned value. Read more