Expand description
§Copy String
Strings that exist on the stack. This makes them Copy
. Useful for when you want to
keep some small text inside a struct or enum and retain copy semantics. Strings are
stored as a byte array with UTF8 conversion on the fly.
Macros§
Structs§
Enums§
- Error
- Errors caught in construction via
new
orfrom_slice
.
Traits§
- Copystr
Comparable - Convenience trait to blanked impl
PartialOrd
andPartialEq
on allcopystr
variants andString
and&str
.