pub(crate) type Utf8Bytes = Bytes<Utf8ContentFormat>;
Expand description
Utf8Bytes is a type alias for Bytes with Utf8ContentFormat
, which is used for any textual
data.
Aliased Type§
struct Utf8Bytes {
inner: Vec<u8>,
_marker: PhantomData<Utf8ContentFormat>,
}
Fields§
§inner: Vec<u8>
§_marker: PhantomData<Utf8ContentFormat>