[][src]Struct spatialite_sys::gaiaShapefileStruct

#[repr(C)]
pub struct gaiaShapefileStruct { pub endian_arch: c_int, pub Valid: c_int, pub ReadOnly: c_int, pub Path: *mut c_char, pub flShx: *mut FILE, pub flShp: *mut FILE, pub flDbf: *mut FILE, pub Shape: c_int, pub Dbf: gaiaDbfListPtr, pub BufDbf: *mut c_uchar, pub DbfHdsz: c_int, pub DbfReclen: c_int, pub DbfSize: c_int, pub DbfRecno: c_int, pub BufShp: *mut c_uchar, pub ShpBfsz: c_int, pub ShpSize: c_int, pub ShxSize: c_int, pub MinX: f64, pub MinY: f64, pub MaxX: f64, pub MaxY: f64, pub IconvObj: *mut c_void, pub LastError: *mut c_char, pub EffectiveType: c_int, pub EffectiveDims: c_int, }

Container for SHP file handling

Fields

endian_arch: c_int

SHP endian arch

Valid: c_int

validity flag: 1 = ready to be processed

ReadOnly: c_int

read or write mode

Path: *mut c_char

SHP 'abstract' path (no suffixes)

flShx: *mut FILE

FILE handle to SHX file

flShp: *mut FILE

FILE handle to SHP file

flDbf: *mut FILE

FILE handle to DBF file

Shape: c_int

the SHP shape code

Dbf: gaiaDbfListPtr

list of DBF fields

BufDbf: *mut c_uchar

DBF I/O buffer

DbfHdsz: c_int

DBF header size (in bytes)

DbfReclen: c_int

DBF record length (in bytes)

DbfSize: c_int

DBF current file size (in bytes)

DbfRecno: c_int

DBF current Record Number

BufShp: *mut c_uchar

SHP I/O buffer

ShpBfsz: c_int

SHP current buffer size (in bytes)

ShpSize: c_int

SHP current file size

ShxSize: c_int

SHX current file size

MinX: f64

Total Extent: min X

MinY: f64

Total Extent: min Y

MaxX: f64

Total Extent: max X

MaxY: f64

Total Extent: max Y

IconvObj: *mut c_void

handle to ICONV converter object

LastError: *mut c_char

last error message (may be NULL)

EffectiveType: c_int

SHP actual OGC Geometry type

EffectiveDims: c_int

SHP actual dims: one of GAIA_XY, GAIA_XY_Z, GAIA_XY_M, GAIA_XY_ZM

Trait Implementations

impl Clone for gaiaShapefileStruct[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Copy for gaiaShapefileStruct[src]

impl Debug for gaiaShapefileStruct[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]