pub trait ToCbor { // Required method fn to_cbor(&self) -> Cbor; }
A trait for converting values to CBOR.
Return a CBOR representation of self.
self