Enum gdal::vector::FieldValue[][src]

pub enum FieldValue {
    IntegerValue(i32),
    StringValue(String),
    RealValue(f64),
}

Variants

Methods

impl FieldValue
[src]

Interpret the value as String. Panics if the value is something else.

Interpret the value as f64. Panics if the value is something else.

Interpret the value as i32. Panics if the value is something else.

Auto Trait Implementations

impl Send for FieldValue

impl Sync for FieldValue