Type Alias CborBytes

Source
pub type CborBytes = Bytes<CborContentFormat>;
Expand description

CborBytes is a type alias for Bytes with CborContentFormat. This is used for CBOR serialized data.

Aliased Type§

pub struct CborBytes {
    inner: Vec<u8>,
    _marker: PhantomData<CborContentFormat>,
}

Fields§

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