Struct mysqlclient_sys::st_mysql_stmt

source ·
#[repr(C)]
pub struct st_mysql_stmt {
Show 35 fields pub mem_root: MA_MEM_ROOT, pub mysql: *mut MYSQL, pub stmt_id: c_ulong, pub flags: c_ulong, pub state: enum_mysqlnd_stmt_state, pub fields: *mut MYSQL_FIELD, pub field_count: c_uint, pub param_count: c_uint, pub send_types_to_server: c_uchar, pub params: *mut MYSQL_BIND, pub bind: *mut MYSQL_BIND, pub result: MYSQL_DATA, pub result_cursor: *mut MYSQL_ROWS, pub bind_result_done: my_bool, pub bind_param_done: my_bool, pub upsert_status: mysql_upsert_status, pub last_errno: c_uint, pub last_error: [c_char; 513], pub sqlstate: [c_char; 6], pub update_max_length: my_bool, pub prefetch_rows: c_ulong, pub list: LIST, pub cursor_exists: my_bool, pub extension: *mut c_void, pub fetch_row_func: mysql_stmt_fetch_row_func, pub execute_count: c_uint, pub default_rset_handler: mysql_stmt_use_or_store_func, pub request_buffer: *mut c_uchar, pub array_size: c_uint, pub row_size: usize, pub prebind_params: c_uint, pub user_data: *mut c_void, pub result_callback: ps_result_callback, pub param_callback: ps_param_callback, pub request_length: usize,
}

Fields§

§mem_root: MA_MEM_ROOT§mysql: *mut MYSQL§stmt_id: c_ulong§flags: c_ulong§state: enum_mysqlnd_stmt_state§fields: *mut MYSQL_FIELD§field_count: c_uint§param_count: c_uint§send_types_to_server: c_uchar§params: *mut MYSQL_BIND§bind: *mut MYSQL_BIND§result: MYSQL_DATA§result_cursor: *mut MYSQL_ROWS§bind_result_done: my_bool§bind_param_done: my_bool§upsert_status: mysql_upsert_status§last_errno: c_uint§last_error: [c_char; 513]§sqlstate: [c_char; 6]§update_max_length: my_bool§prefetch_rows: c_ulong§list: LIST§cursor_exists: my_bool§extension: *mut c_void§fetch_row_func: mysql_stmt_fetch_row_func§execute_count: c_uint§default_rset_handler: mysql_stmt_use_or_store_func§request_buffer: *mut c_uchar§array_size: c_uint§row_size: usize§prebind_params: c_uint§user_data: *mut c_void§result_callback: ps_result_callback§param_callback: ps_param_callback§request_length: usize

Trait Implementations§

source§

impl Clone for st_mysql_stmt

source§

fn clone(&self) -> st_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 st_mysql_stmt

source§

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

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

impl Copy for st_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,

§

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

§

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.