pub trait Buffer: Sealed + Deref<Target = str> {
type Cow: From<String> + AsRef<str> + Borrow<str> + Deref<Target = str>;
type ByteCow: From<Vec<u8>> + AsRef<[u8]> + Borrow<[u8]> + Deref<Target = [u8]>;
}
Expand description
A shared or owned string buffer. Implemented for String
and &str
. Implementation detail.
This is trait is implementation detail of this library, cannot be
implemented in other crates and is not subject to semantic versioning.
litrs
only guarantees that this trait is implemented for String
and
for<'a> &'a str
.
Required Associated Types§
Object Safety§
This trait is not object safe.