Struct MdbColumn

Source
#[repr(C)]
pub struct MdbColumn {
Show 25 fields pub table: *mut S_MdbTableDef, pub name: [c_char; 257], pub col_type: c_int, pub col_size: c_int, pub bind_ptr: *mut c_void, pub len_ptr: *mut c_int, pub properties: *mut GHashTable, pub num_sargs: c_uint, pub sargs: *mut GPtrArray, pub idx_sarg_cache: *mut GPtrArray, pub is_fixed: c_uchar, pub query_order: c_int, pub col_num: c_int, pub cur_value_start: c_int, pub cur_value_len: c_int, pub cur_blob_pg_row: guint32, pub chunk_size: c_int, pub col_prec: c_int, pub col_scale: c_int, pub is_long_auto: c_uchar, pub is_uuid_auto: c_uchar, pub props: *mut MdbProperties, pub fixed_offset: c_int, pub var_col_num: c_uint, pub row_col_num: c_int,
}

Fields§

§table: *mut S_MdbTableDef§name: [c_char; 257]§col_type: c_int§col_size: c_int§bind_ptr: *mut c_void§len_ptr: *mut c_int§properties: *mut GHashTable§num_sargs: c_uint§sargs: *mut GPtrArray§idx_sarg_cache: *mut GPtrArray§is_fixed: c_uchar§query_order: c_int§col_num: c_int§cur_value_start: c_int§cur_value_len: c_int§cur_blob_pg_row: guint32§chunk_size: c_int§col_prec: c_int§col_scale: c_int§is_long_auto: c_uchar§is_uuid_auto: c_uchar§props: *mut MdbProperties§fixed_offset: c_int§var_col_num: c_uint§row_col_num: c_int

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