Struct mysqlclient_sys::MYSQL_STMT

source ·
#[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

source§

fn clone(&self) -> MYSQL_STMT

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for MYSQL_STMT

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Copy for MYSQL_STMT

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> CloneToUninit for T
where T: Clone,

source§

unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. 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> ToOwned for T
where T: Clone,

source§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

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

source§

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>,

source§

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.