pub enum CborValue<'a> {
    Array(Vec<Cow<'a, Cbor>>),
    Dict(BTreeMap<Cow<'a, Cbor>, Cow<'a, Cbor>>),
    Undefined,
    Null,
    Bool(bool),
    Number(Number<'a>),
    Timestamp(Timestamp),
    Str(Cow<'a, str>),
    Bytes(Cow<'a, [u8]>),
    Invalid,
    Unknown,
}
Expand description

Lifted navigation structure for a CborValue.

You can obtain this using Cbor::decode(). This will reference existing bytes as much as possible, but in some cases it has to allocate, e.g. when some needed slices are not contiguous in the underlying Cbor.

Variants

Array(Vec<Cow<'a, Cbor>>)

Dict(BTreeMap<Cow<'a, Cbor>, Cow<'a, Cbor>>)

Undefined

Null

Bool(bool)

Number(Number<'a>)

Timestamp(Timestamp)

Str(Cow<'a, str>)

Bytes(Cow<'a, [u8]>)

Invalid

Structural constraints for a tag are violated (like tag 0 on a number)

Unknown

Unknown tags are present, you may want to manually interpret the TaggedItem

Implementations

Cut all ties to the underlying byte slice, which often implies allocations

Trait Implementations

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more
This method tests for self and other values to be equal, and is used by ==. Read more
This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.