Enum maxminddb::DataRecord [] [src]

pub enum DataRecord {
    String(String),
    Double(f64),
    Byte(u8),
    Uint16(u16),
    Uint32(u32),
    Map(Box<DbMap>),
    Int32(i32),
    Uint64(u64),
    Boolean(bool),
    Array(DbArray),
    Float(f32),
    Null,
}

Variants

String(String)Double(f64)Byte(u8)Uint16(u16)Uint32(u32)Map(Box<DbMap>)Int32(i32)Uint64(u64)Boolean(bool)Array(DbArray)Float(f32)Null

Trait Implementations

impl PartialEq for DataRecord
[src]

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

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

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

This method tests for !=.

impl Debug for DataRecord
[src]

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

Formats the value using the given formatter.

impl Clone for DataRecord
[src]

fn clone(&self) -> DataRecord

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