Struct mysqlclient_sys::st_mysql_stmt

source ·
#[repr(C)]
pub struct st_mysql_stmt {
Show 27 fields pub mem_root: 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 st_mysql_stmt, row: *mut *mut c_uchar) -> c_int>, pub affected_rows: my_ulonglong, pub insert_id: my_ulonglong, 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: my_bool, pub bind_param_done: my_bool, pub bind_result_done: c_uchar, pub unbuffered_fetch_cancelled: my_bool, pub update_max_length: my_bool, pub extension: *mut st_mysql_stmt_extension,
}

Fields§

§mem_root: 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 st_mysql_stmt, row: *mut *mut c_uchar) -> c_int>§affected_rows: my_ulonglong§insert_id: my_ulonglong§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: my_bool§bind_param_done: my_bool§bind_result_done: c_uchar§unbuffered_fetch_cancelled: my_bool§update_max_length: my_bool§extension: *mut st_mysql_stmt_extension

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.