Union gdal_sys::OGRField[][src]

#[repr(C)]
pub union OGRField {
    pub Integer: c_int,
    pub Integer64: GIntBig,
    pub Real: f64,
    pub String: *mut c_char,
    pub IntegerList: OGRField__bindgen_ty_1,
    pub Integer64List: OGRField__bindgen_ty_2,
    pub RealList: OGRField__bindgen_ty_3,
    pub StringList: OGRField__bindgen_ty_4,
    pub Binary: OGRField__bindgen_ty_5,
    pub Set: OGRField__bindgen_ty_6,
    pub Date: OGRField__bindgen_ty_7,
    // some fields omitted
}

OGRFeature field attribute value union.

Fields

Integer: c_int

@cond Doxygen_Suppress

Integer64: GIntBigReal: f64String: *mut c_charIntegerList: OGRField__bindgen_ty_1Integer64List: OGRField__bindgen_ty_2RealList: OGRField__bindgen_ty_3StringList: OGRField__bindgen_ty_4Binary: OGRField__bindgen_ty_5Set: OGRField__bindgen_ty_6Date: OGRField__bindgen_ty_7

Trait Implementations

impl Clone for OGRField[src]

impl Copy for OGRField[src]

Auto Trait Implementations

impl RefUnwindSafe for OGRField

impl !Send for OGRField

impl !Sync for OGRField

impl Unpin for OGRField

impl UnwindSafe for OGRField

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.