pub trait CoseSerializable {
// Required methods
fn to_cose(&self) -> Vec<u8> ⓘ;
fn from_cose(bytes: &[u8]) -> Result<Self, EncodingError>
where Self: Sized;
}
Expand description
Trait for structs that are serializable to COSE objects.