Type Alias OctetStreamBytes

Source
pub type OctetStreamBytes = Bytes<OctetStreamContentFormat>;
Expand description

OctetStreamBytes is a type alias for Bytes with OctetStreamContentFormat. This should be used for e.g. attachments and other data without an explicit content format.

Aliased Type§

struct OctetStreamBytes {
    inner: Vec<u8>,
    _marker: PhantomData<OctetStreamContentFormat>,
}

Fields§

§inner: Vec<u8>§_marker: PhantomData<OctetStreamContentFormat>