Enum cbor::Type[][src]

pub enum Type {
    UInt,
    UInt8,
    UInt16,
    UInt32,
    UInt64,
    Int,
    Int8,
    Int16,
    Int32,
    Int64,
    Float,
    Float16,
    Float32,
    Float64,
    Bytes,
    Unicode,
    Array,
    Map,
    Tag,
    Any,
    Null,
    Undefined,
    Bool,
    Break,
}

All core types defined in the CBOR specification.

For the most part, this is used for convenient error reporting.

Variants

Trait Implementations

impl Clone for Type
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for Type
[src]

impl Debug for Type
[src]

Formats the value using the given formatter. Read more

impl Eq for Type
[src]

impl PartialEq for Type
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Display for Type
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for Type

impl Sync for Type