pub struct FromBytesUntilNulError(/* private fields */);
🔬This is a nightly-only experimental API. (
c_str_module
)Expand description
An error indicating that no nul byte was present.
A slice used to create a CStr
must contain a nul byte somewhere
within the slice.
This error is created by the CStr::from_bytes_until_nul
method.