Expand description
A fixed capacity String
.
Structs§
- Drain
- A draining iterator for
String
. - String
Inner - Base struct for
String
andStringView
, generic over theStringStorage
.
Enums§
- From
Utf16 Error - A possible error value when converting a
String
from a UTF-16 byte slice.
Traits§
- String
Storage - Trait defining how data for a String is stored.
Type Aliases§
- Owned
Storage - Implementation of
StringStorage
that 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
StringStorage
that stores the data in an unsized slice.