Enum mkit::cbor::Key[][src]

pub enum Key {
    Bool(bool),
    N64(i64),
    U64(u64),
    F32(f32),
    F64(f64),
    Bytes(Vec<u8>),
    Text(String),
}

Possible types that can be used as a key in cbor-map.

Variants

Bool(bool)
N64(i64)
U64(u64)
F32(f32)
F64(f64)
Bytes(Vec<u8>)
Text(String)

Implementations

impl Key[src]

pub fn to_type_order(&self) -> usize[src]

As per cbor spec, map’s key can be a heterogeneous collection of types. That is, some of the keys can be Boolean, other can be numbers etc ..

This function defines the ordering for supported key types. As,

  • Key::Bool, sort before every other keys.
  • Key::N64, sort after boolean type.
  • Key::U64, sort after negative integers.
  • Key::F32, sort after positive integers.
  • Key::F64, sort after 32-bit floating point numbers.
  • Key::Bytes, sort after 64-bit floating point numbers.
  • Key::Text, sort after bytes.

Trait Implementations

impl Arbitrary for Key[src]

impl Clone for Key[src]

impl Debug for Key[src]

impl Eq for Key[src]

impl FromCbor for Key[src]

impl IntoCbor for Key[src]

impl Ord for Key[src]

impl PartialEq<Key> for Key[src]

impl PartialOrd<Key> for Key[src]

Auto Trait Implementations

impl RefUnwindSafe for Key

impl Send for Key

impl Sync for Key

impl Unpin for Key

impl UnwindSafe for Key

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.