modconstruct;modconvert;modpattern;modquery;modrepr;modtraits;pubusepattern::{SplitPattern, SplitStr, StrPattern};userepr::InnerString;/// Immutable string value with inline, static, or shared backing.
////// All clones are allocation-free. Use `CheetahBuilder` or `String` while
/// contents are still being mutated.
#[derive(Clone)]#[repr(transparent)]pubstructCheetahString{inner: InnerString,
}