Enum cbor_data::CborObject [−][src]
pub enum CborObject<'a> {
Array(Vec<CborObject<'a>>),
Dict(BTreeMap<&'a str, CborObject<'a>>),
Value(Tags<'a>, ValueKind<'a>),
}Expand description
Lifted navigation structure for a CborValue.
You can obtain this using CborValue::as_object().
Variants
Array(Vec<CborObject<'a>>)Dict(BTreeMap<&'a str, CborObject<'a>>)Implementations
Trait Implementations
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
Auto Trait Implementations
impl<'a> RefUnwindSafe for CborObject<'a>impl<'a> Send for CborObject<'a>impl<'a> Sync for CborObject<'a>impl<'a> Unpin for CborObject<'a>impl<'a> UnwindSafe for CborObject<'a>Blanket Implementations
Mutably borrows from an owned value. Read more