#[repr(C)]pub struct MYSQL_STMT {Show 27 fields
pub mem_root: *mut MEM_ROOT,
pub list: LIST,
pub mysql: *mut MYSQL,
pub params: *mut MYSQL_BIND,
pub bind: *mut MYSQL_BIND,
pub fields: *mut MYSQL_FIELD,
pub result: MYSQL_DATA,
pub data_cursor: *mut MYSQL_ROWS,
pub read_row_func: Option<unsafe extern "C" fn(stmt: *mut MYSQL_STMT, row: *mut *mut c_uchar) -> c_int>,
pub affected_rows: u64,
pub insert_id: u64,
pub stmt_id: c_ulong,
pub flags: c_ulong,
pub prefetch_rows: c_ulong,
pub server_status: c_uint,
pub last_errno: c_uint,
pub param_count: c_uint,
pub field_count: c_uint,
pub state: enum_mysql_stmt_state,
pub last_error: [c_char; 512],
pub sqlstate: [c_char; 6],
pub send_types_to_server: bool,
pub bind_param_done: bool,
pub bind_result_done: c_uchar,
pub unbuffered_fetch_cancelled: bool,
pub update_max_length: bool,
pub extension: *mut MYSQL_STMT_EXT,
}
Fields§
§mem_root: *mut MEM_ROOT
§list: LIST
§mysql: *mut MYSQL
§params: *mut MYSQL_BIND
§bind: *mut MYSQL_BIND
§fields: *mut MYSQL_FIELD
§result: MYSQL_DATA
§data_cursor: *mut MYSQL_ROWS
§read_row_func: Option<unsafe extern "C" fn(stmt: *mut MYSQL_STMT, row: *mut *mut c_uchar) -> c_int>
§affected_rows: u64
§insert_id: u64
§stmt_id: c_ulong
§flags: c_ulong
§prefetch_rows: c_ulong
§server_status: c_uint
§last_errno: c_uint
§param_count: c_uint
§field_count: c_uint
§state: enum_mysql_stmt_state
§last_error: [c_char; 512]
§sqlstate: [c_char; 6]
§send_types_to_server: bool
§bind_param_done: bool
§bind_result_done: c_uchar
§unbuffered_fetch_cancelled: bool
§update_max_length: bool
§extension: *mut MYSQL_STMT_EXT
Trait Implementations§
Source§impl Clone for MYSQL_STMT
impl Clone for MYSQL_STMT
Source§fn clone(&self) -> MYSQL_STMT
fn clone(&self) -> MYSQL_STMT
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_STMT
impl Debug for MYSQL_STMT
impl Copy for MYSQL_STMT
Auto Trait Implementations§
impl Freeze for MYSQL_STMT
impl RefUnwindSafe for MYSQL_STMT
impl !Send for MYSQL_STMT
impl !Sync for MYSQL_STMT
impl Unpin for MYSQL_STMT
impl UnwindSafe for MYSQL_STMT
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