Macros§
- str
dep_const_str
Structs§
core
Representation of a borrowed C string (SeeCString
).alloc
An owned, C-compatible, nul-terminated string with no nul bytes in the middle.std
Borrowed reference to an OS string (SeeOsString
).std
A type that can represent owned, mutable platform-native strings, but is cheaply inter-convertible with Rust strings.- Str
str
A string slice namespace. - String
alloc
alloc
A UTF-8–encoded, growable string. - String
Nonul _string_nonul
A UTF-8-encoded string, backed by an array withu8::MAX
bytes of capacity. Can’t contain nul chars. - String
U8 _string_u8
A UTF-8–encoded string, backed by an array withu8::MAX
bytes of capacity. - String
U16 _string_u16
A UTF-8–encoded string, backed by an array withu16::MAX
bytes of capacity. - String
U32 _string_u32
A UTF-8–encoded string, backed by an array withu32::MAX
bytes of capacity. - String
Usize _string_usize
A UTF-8–encoded string, backed by an array withusize::MAX
bytes of capacity.