Enum cbor::types::Type [] [src]

pub enum Type {
    Array,
    Bool,
    Break,
    Bytes,
    Float16,
    Float32,
    Float64,
    Int16,
    Int32,
    Int64,
    Int8,
    Null,
    Object,
    Tagged,
    Text,
    UInt16,
    UInt32,
    UInt64,
    UInt8,
    Undefined,
    Unknown {
        major: u8,
        info: u8,
    },
    Reserved {
        major: u8,
        info: u8,
    },
    Unassigned {
        major: u8,
        info: u8,
    },
}

The CBOR types.

Variants

ArrayBoolBreakBytesFloat16Float32Float64Int16Int32Int64Int8NullObjectTaggedTextUInt16UInt32UInt64UInt8UndefinedUnknown

Fields

major: u8
info: u8
Reserved

Fields

major: u8
info: u8
Unassigned

Fields

major: u8
info: u8

Methods

impl Type
[src]

fn major(&self) -> u8

fn read<R: ReadBytesExt>(r: &mut R) -> Result<(Type, u8)Error>

Trait Implementations

impl Hash for Type
[src]

fn hash<__H: Hasher>(&self, __arg_0: &mut __H)

Feeds this value into the state given, updating the hasher as necessary.

fn hash_slice<H>(data: &[Self], state: &mut H) where H: Hasher
1.3.0

Feeds a slice of this type into the state provided.

impl Debug for Type
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.

impl Ord for Type
[src]

fn cmp(&self, __arg_0: &Type) -> Ordering

This method returns an Ordering between self and other. Read more

impl Eq for Type
[src]

impl PartialOrd for Type
[src]

fn partial_cmp(&self, __arg_0: &Type) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more

fn lt(&self, __arg_0: &Type) -> bool

This method tests less than (for self and other) and is used by the < operator. Read more

fn le(&self, __arg_0: &Type) -> bool

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

fn gt(&self, __arg_0: &Type) -> bool

This method tests greater than (for self and other) and is used by the > operator. Read more

fn ge(&self, __arg_0: &Type) -> bool

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl PartialEq for Type
[src]

fn eq(&self, __arg_0: &Type) -> bool

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

fn ne(&self, __arg_0: &Type) -> bool

This method tests for !=.

impl Copy for Type
[src]

impl Clone for Type
[src]

fn clone(&self) -> Type

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)
1.0.0

Performs copy-assignment from source. Read more