Expand description
Non-empty strings.
Re-exports§
pub use cow::CowStr;allocorstdpub use owned::OwnedStr;allocorstdpub use empty::Empty;pub use str::Str;
Modules§
- cow
allocorstd - Non-empty
Cow<'_, str>. - empty
- Emptiness errors.
- macros
- Macros used for constructing non-empty strings.
- owned
allocorstd - Non-empty
String. - str
- Non-empty
str.
Macros§
- const_
borrowed_ str allocorstd - Similar to
const_str, but constructs borrowedCowStr. - const_
str - Constructs
Strfrom the given string, panicking if it is empty.