pub trait IntoCborValue {
    fn into_cbor_value(self) -> Value;
}
Expand description

Trait that indicates that a type can be converted to a CBOR Value.

Required Methods

Convert self into a CBOR Value, consuming it along the way.

Implementors