Expand description
A fixed capacity String.
Structs§
- Drain
- A draining iterator for
String. - String
Inner - Base struct for
StringandStringView, generic over theStringStorage.
Enums§
- From
Utf16 Error - A possible error value when converting a
Stringfrom a UTF-16 byte slice.
Traits§
- String
Storage - Trait defining how data for a String is stored.
Type Aliases§
- Owned
Storage - Implementation of
StringStoragethat stores the data in an array whose size is known at compile time. - String
- A fixed capacity
String. - String
View - A dynamic capacity
String. - View
Storage - Implementation of
StringStoragethat stores the data in an unsized slice.