pub struct FromBytesWithNulError { /* fields omitted */ }
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 at the end of the slice.
This error is created by the
from_bytes_with_nul
method on
CStr
. See its documentation for more.
use std::ffi::{CStr, FromBytesWithNulError};
let _: FromBytesWithNulError = CStr::from_bytes_with_nul(b"f\0oo").unwrap_err();Run
Performs copy-assignment from source
. Read more
This method tests for self
and other
values to be equal, and is used by ==
. Read more
This method tests for !=
.
Formats the value using the given formatter. Read more
The lower-level cause of this error, if any. Read more
Formats the value using the given formatter. Read more