Expand description
A crate for various string implementations.
Structs§
- Immutable
String - Represents an immutable string, which is stored behind ref counters.
This is a thin wrapper around [
ImmutableArray<u8>
], and is thread safe as well. - Immutable
Weak String - Represents a weak reference to an
ImmutableString
. Analogously to how [ImmutableWeakArray
] is a weak reference to [ImmutableArray
].
Enums§
- Immutable
String Construction Error - Represents an error that occurs when constructing new
ImmutableString
.