Struct MdbSQL

Source
#[repr(C)]
pub struct MdbSQL {
Show 17 fields pub mdb: *mut MdbHandle, pub all_columns: c_int, pub sel_count: c_int, pub num_columns: c_uint, pub columns: *mut GPtrArray, pub num_tables: c_uint, pub tables: *mut GPtrArray, pub cur_table: *mut MdbTableDef, pub sarg_tree: *mut MdbSargNode, pub sarg_stack: *mut GList, pub bound_values: *mut GPtrArray, pub kludge_ttable_pg: *mut c_uchar, pub max_rows: c_long, pub error_msg: [c_char; 1024], pub limit: c_int, pub limit_percent: c_int, pub row_count: c_long,
}

Fields§

§mdb: *mut MdbHandle§all_columns: c_int§sel_count: c_int§num_columns: c_uint§columns: *mut GPtrArray§num_tables: c_uint§tables: *mut GPtrArray§cur_table: *mut MdbTableDef§sarg_tree: *mut MdbSargNode§sarg_stack: *mut GList§bound_values: *mut GPtrArray§kludge_ttable_pg: *mut c_uchar§max_rows: c_long§error_msg: [c_char; 1024]§limit: c_int§limit_percent: c_int§row_count: c_long

Auto Trait Implementations§

§

impl Freeze for MdbSQL

§

impl RefUnwindSafe for MdbSQL

§

impl !Send for MdbSQL

§

impl !Sync for MdbSQL

§

impl Unpin for MdbSQL

§

impl UnwindSafe for MdbSQL

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> 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, 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.