Expand description
A simple to use, copy/clone-efficient inline string type for Rust
Structs§
- Inline
Flex Str - Inline bytes type - used to store small strings inline
- Interior
NulError cstr - Error type returned when a C String has an interior NUL byte.
- TooLong
ForInlining - Error type returned when the string is too long for inline storage.
Enums§
- TooLong
OrNul Error cstr - Error type returned when a C String is too long for inline storage or has an interior NUL byte.
- TooLong
OrUtf8 Error str - Error type returned when a string is too long for inline storage or has an invalid UTF-8 sequence.
Constants§
- INLINE_
CAPACITY - The capacity of the InlineFlexStr type in bytes
Traits§
- String
Like - Trait for string types that provide various operations
Type Aliases§
- Inline
Bytes bytes - Inline
[u8]type - InlineC
Str cstr - Inline
CStrtype - Inline
OsStr stdandosstr - Inline
OsStrtype - Inline
Path stdandpath - Inline
Pathtype - Inline
Str str - Inline
strtype