pub trait CborLen<C> {
// Required method
fn cbor_len(&self, ctx: &mut C) -> usize;
}
Expand description
A type that can calculate its own CBOR encoding length.
pub trait CborLen<C> {
// Required method
fn cbor_len(&self, ctx: &mut C) -> usize;
}
A type that can calculate its own CBOR encoding length.