[][src]Struct spatialite_sys::gaiaDbfStruct

#[repr(C)]
pub struct gaiaDbfStruct { pub endian_arch: c_int, pub Valid: c_int, pub Path: *mut c_char, pub flDbf: *mut FILE, 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 IconvObj: *mut c_void, pub LastError: *mut c_char, }

Container for DBF file handling

Fields

endian_arch: c_int

DBF endian arch

Valid: c_int

validity flag: 1 = ready to be processed

Path: *mut c_char

DBF file pathname

flDbf: *mut FILE

FILE handle

Dbf: gaiaDbfListPtr

list of DBF fields

BufDbf: *mut c_uchar

I/O buffer

DbfHdsz: c_int

header size (in bytes)

DbfReclen: c_int

record length (in bytes)

DbfSize: c_int

current file size

DbfRecno: c_int

current Record Number

IconvObj: *mut c_void

handle to ICONV converter object

LastError: *mut c_char

last error message (may be NULL)

Trait Implementations

impl Clone for gaiaDbfStruct[src]

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

Performs copy-assignment from source. Read more

impl Copy for gaiaDbfStruct[src]

impl Debug for gaiaDbfStruct[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From for T[src]

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, 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> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut 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.