Struct gaiaDbfStruct

Source
#[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, }
Expand description

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§

Source§

impl Clone for gaiaDbfStruct

Source§

fn clone(&self) -> gaiaDbfStruct

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for gaiaDbfStruct

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Copy for gaiaDbfStruct

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dst: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.