Module string

Module string 

Source
Expand description

A fixed capacity String.

Structs§

Drain
A draining iterator for String.
StringInner
Base struct for String and StringView, generic over the StringStorage.

Enums§

FromUtf16Error
A possible error value when converting a String from a UTF-16 byte slice.

Traits§

StringStorage
Trait defining how data for a String is stored.

Type Aliases§

OwnedStorage
Implementation of StringStorage that stores the data in an array whose size is known at compile time.
String
A fixed capacity String.
StringView
A dynamic capacity String.
ViewStorage
Implementation of StringStorage that stores the data in an unsized slice.