pub type CoseKeyBytes = Bytes<CoseKeyContentFormat>;
Expand description
CoseKeyBytes is a type alias for Bytes with CoseKeyContentFormat
. This is used for serialized
CoseKey objects.
Aliased Type§
struct CoseKeyBytes {
inner: Vec<u8>,
_marker: PhantomData<CoseKeyContentFormat>,
}
Fields§
§inner: Vec<u8>
§_marker: PhantomData<CoseKeyContentFormat>