#[repr(C)]pub struct MYSQL_FIELD {Show 21 fields
pub name: *mut c_char,
pub org_name: *mut c_char,
pub table: *mut c_char,
pub org_table: *mut c_char,
pub db: *mut c_char,
pub catalog: *mut c_char,
pub def: *mut c_char,
pub length: c_ulong,
pub max_length: c_ulong,
pub name_length: c_uint,
pub org_name_length: c_uint,
pub table_length: c_uint,
pub org_table_length: c_uint,
pub db_length: c_uint,
pub catalog_length: c_uint,
pub def_length: c_uint,
pub flags: c_uint,
pub decimals: c_uint,
pub charsetnr: c_uint,
pub type_: enum_field_types,
pub extension: *mut c_void,
}
Fields§
§name: *mut c_char
§org_name: *mut c_char
§table: *mut c_char
§org_table: *mut c_char
§db: *mut c_char
§catalog: *mut c_char
§def: *mut c_char
§length: c_ulong
§max_length: c_ulong
§name_length: c_uint
§org_name_length: c_uint
§table_length: c_uint
§org_table_length: c_uint
§db_length: c_uint
§catalog_length: c_uint
§def_length: c_uint
§flags: c_uint
§decimals: c_uint
§charsetnr: c_uint
§type_: enum_field_types
§extension: *mut c_void
Trait Implementations§
Source§impl Clone for MYSQL_FIELD
impl Clone for MYSQL_FIELD
Source§fn clone(&self) -> MYSQL_FIELD
fn clone(&self) -> MYSQL_FIELD
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for MYSQL_FIELD
impl Debug for MYSQL_FIELD
impl Copy for MYSQL_FIELD
Auto Trait Implementations§
impl Freeze for MYSQL_FIELD
impl RefUnwindSafe for MYSQL_FIELD
impl !Send for MYSQL_FIELD
impl !Sync for MYSQL_FIELD
impl Unpin for MYSQL_FIELD
impl UnwindSafe for MYSQL_FIELD
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