#[repr(C)]pub struct MYSQL_BIND {Show 19 fields
pub length: *mut c_ulong,
pub is_null: *mut bool,
pub buffer: *mut c_void,
pub error: *mut bool,
pub row_ptr: *mut c_uchar,
pub store_param_func: Option<unsafe extern "C" fn(net: *mut NET, param: *mut MYSQL_BIND)>,
pub fetch_result: Option<unsafe extern "C" fn(arg1: *mut MYSQL_BIND, arg2: *mut MYSQL_FIELD, row: *mut *mut c_uchar)>,
pub skip_result: Option<unsafe extern "C" fn(arg1: *mut MYSQL_BIND, arg2: *mut MYSQL_FIELD, row: *mut *mut c_uchar)>,
pub buffer_length: c_ulong,
pub offset: c_ulong,
pub length_value: c_ulong,
pub param_number: c_uint,
pub pack_length: c_uint,
pub buffer_type: enum_field_types,
pub error_value: bool,
pub is_unsigned: bool,
pub long_data_used: bool,
pub is_null_value: bool,
pub extension: *mut c_void,
}
Fields§
§length: *mut c_ulong
§is_null: *mut bool
§buffer: *mut c_void
§error: *mut bool
§row_ptr: *mut c_uchar
§store_param_func: Option<unsafe extern "C" fn(net: *mut NET, param: *mut MYSQL_BIND)>
§fetch_result: Option<unsafe extern "C" fn(arg1: *mut MYSQL_BIND, arg2: *mut MYSQL_FIELD, row: *mut *mut c_uchar)>
§skip_result: Option<unsafe extern "C" fn(arg1: *mut MYSQL_BIND, arg2: *mut MYSQL_FIELD, row: *mut *mut c_uchar)>
§buffer_length: c_ulong
§offset: c_ulong
§length_value: c_ulong
§param_number: c_uint
§pack_length: c_uint
§buffer_type: enum_field_types
§error_value: bool
§is_unsigned: bool
§long_data_used: bool
§is_null_value: bool
§extension: *mut c_void
Trait Implementations§
Source§impl Clone for MYSQL_BIND
impl Clone for MYSQL_BIND
Source§fn clone(&self) -> MYSQL_BIND
fn clone(&self) -> MYSQL_BIND
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_BIND
impl Debug for MYSQL_BIND
impl Copy for MYSQL_BIND
Auto Trait Implementations§
impl Freeze for MYSQL_BIND
impl RefUnwindSafe for MYSQL_BIND
impl !Send for MYSQL_BIND
impl !Sync for MYSQL_BIND
impl Unpin for MYSQL_BIND
impl UnwindSafe for MYSQL_BIND
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