Struct mysqlclient_sys::st_mysql_bind
source · [−]#[repr(C)]pub struct st_mysql_bind {Show 19 fields
pub length: *mut c_ulong,
pub is_null: *mut my_bool,
pub buffer: *mut c_void,
pub error: *mut my_bool,
pub row_ptr: *mut c_uchar,
pub store_param_func: Option<unsafe extern "C" fn(net: *mut NET, param: *mut st_mysql_bind)>,
pub fetch_result: Option<unsafe extern "C" fn(arg1: *mut st_mysql_bind, arg2: *mut MYSQL_FIELD, row: *mut *mut c_uchar)>,
pub skip_result: Option<unsafe extern "C" fn(arg1: *mut st_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: my_bool,
pub is_unsigned: my_bool,
pub long_data_used: my_bool,
pub is_null_value: my_bool,
pub extension: *mut c_void,
}
Fields
length: *mut c_ulong
is_null: *mut my_bool
buffer: *mut c_void
error: *mut my_bool
row_ptr: *mut c_uchar
store_param_func: Option<unsafe extern "C" fn(net: *mut NET, param: *mut st_mysql_bind)>
fetch_result: Option<unsafe extern "C" fn(arg1: *mut st_mysql_bind, arg2: *mut MYSQL_FIELD, row: *mut *mut c_uchar)>
skip_result: Option<unsafe extern "C" fn(arg1: *mut st_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: my_bool
is_unsigned: my_bool
long_data_used: my_bool
is_null_value: my_bool
extension: *mut c_void
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for st_mysql_bind
impl !Send for st_mysql_bind
impl !Sync for st_mysql_bind
impl Unpin for st_mysql_bind
impl UnwindSafe for st_mysql_bind
Blanket Implementations
Mutably borrows from an owned value. Read more