Enum gds::RecordData [] [src]

pub enum RecordData {
    None,
    Bit(u16),
    Int16(i16),
    Int32(i32),
    Real32(f32),
    Real64(f64),
    Str(String),
}

Enumeration of possible record data.

Variants

No data.

16 bit of flags.

16 bit signed integer.

32 bit signed integer.

32 bit real.

64 bit real.

String.

Trait Implementations

impl Debug for RecordData
[src]

Formats the value using the given formatter.

impl Clone for RecordData
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more