pub trait IntoCborValueOption {
    fn into_cbor_value_option(self) -> Option<Value>;
}
Expand description

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

Required Methods

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

Implementations on Foreign Types

Implementors