Expand description
Handle null-terminated strings with explicit length measurement.
Structs§
- Measured
Null Term Str - The more direct analog to
ffi::CStrwhich explicitly knows the length of its string data. - Null
Term Str - Similar to
ffi::CStr, except thatSelf::from_ptr()does not implicitly perform alibc::strlen(). - Null
Term String - Owned version of
MeasuredNullTermStr.
Traits§
- AsNull
Term Str - Allow
NullTermStringinstances to be interpreted as references toMeasuredNullTermStr.