Struct mariadb_sys::st_schema_table
source · #[repr(C)]pub struct st_schema_table {
pub table_name: *const c_char,
pub fields_info: *mut ST_FIELD_INFO,
pub reset_table: Option<unsafe extern "C" fn() -> c_int>,
pub fill_table: Option<unsafe extern "C" fn(thd: *mut THD, tables: *mut TABLE_LIST, cond: *mut COND) -> c_int>,
pub old_format: Option<unsafe extern "C" fn(thd: *mut THD, schema_table: *mut st_schema_table) -> c_int>,
pub process_table: Option<unsafe extern "C" fn(thd: *mut THD, tables: *mut TABLE_LIST, table: *mut TABLE, res: bool, db_name: *const LEX_CSTRING, table_name: *const LEX_CSTRING) -> c_int>,
pub idx_field1: c_int,
pub idx_field2: c_int,
pub hidden: bool,
pub i_s_requested_object: uint,
}
Fields§
§table_name: *const c_char
§fields_info: *mut ST_FIELD_INFO
§reset_table: Option<unsafe extern "C" fn() -> c_int>
§fill_table: Option<unsafe extern "C" fn(thd: *mut THD, tables: *mut TABLE_LIST, cond: *mut COND) -> c_int>
§old_format: Option<unsafe extern "C" fn(thd: *mut THD, schema_table: *mut st_schema_table) -> c_int>
§process_table: Option<unsafe extern "C" fn(thd: *mut THD, tables: *mut TABLE_LIST, table: *mut TABLE, res: bool, db_name: *const LEX_CSTRING, table_name: *const LEX_CSTRING) -> c_int>
§idx_field1: c_int
§idx_field2: c_int
§i_s_requested_object: uint
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for st_schema_table
impl !Send for st_schema_table
impl !Sync for st_schema_table
impl Unpin for st_schema_table
impl UnwindSafe for st_schema_table
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more