Enum dmap::value::DmapValue [] [src]

pub enum DmapValue<'a, 'k> {
    I8(i8),
    U8(u8),
    I16(i16),
    U16(u16),
    I32(i32),
    U32(u32),
    I64(i64),
    U64(u64),
    String(&'a str),
    Container(Vec<DmapItem<'a, 'k>>),
    Unknown(&'a [u8]),
}

Variants

Trait Implementations

impl<'a, 'k> Debug for DmapValue<'a, 'k>
[src]

Formats the value using the given formatter.

impl<'a, 'k> Clone for DmapValue<'a, 'k>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<'a, 'k> PartialEq for DmapValue<'a, 'k>
[src]

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

This method tests for !=.

impl<'a, 'k> Eq for DmapValue<'a, 'k>
[src]

impl<'de> Deserialize<'de> for DmapValue<'de, 'de>
[src]

Deserialize this value from the given Serde deserializer. Read more

impl<'a, 'k> Serialize for DmapValue<'a, 'k>
[src]

Serialize this value into the given Serde serializer. Read more