Struct mysqlclient_sys::st_mysql_options

source ·
#[repr(C)]
pub struct st_mysql_options {
Show 40 fields pub connect_timeout: c_uint, pub read_timeout: c_uint, pub write_timeout: c_uint, pub port: c_uint, pub protocol: c_uint, pub client_flag: c_ulong, pub host: *mut c_char, pub user: *mut c_char, pub password: *mut c_char, pub unix_socket: *mut c_char, pub db: *mut c_char, pub init_commands: *mut st_mysql_options_st_dynamic_array, pub my_cnf_file: *mut c_char, pub my_cnf_group: *mut c_char, pub charset_dir: *mut c_char, pub charset_name: *mut c_char, pub ssl_key: *mut c_char, pub ssl_cert: *mut c_char, pub ssl_ca: *mut c_char, pub ssl_capath: *mut c_char, pub ssl_cipher: *mut c_char, pub shared_memory_base_name: *mut c_char, pub max_allowed_packet: c_ulong, pub use_ssl: my_bool, pub compress: my_bool, pub named_pipe: my_bool, pub unused1: my_bool, pub unused2: my_bool, pub unused3: my_bool, pub unused4: my_bool, pub methods_to_use: mysql_option, pub ci: st_mysql_options__bindgen_ty_1, pub unused5: my_bool, pub report_data_truncation: my_bool, pub local_infile_init: Option<unsafe extern "C" fn(arg1: *mut *mut c_void, arg2: *const c_char, arg3: *mut c_void) -> c_int>, pub local_infile_read: Option<unsafe extern "C" fn(arg1: *mut c_void, arg2: *mut c_char, arg3: c_uint) -> c_int>, pub local_infile_end: Option<unsafe extern "C" fn(arg1: *mut c_void)>, pub local_infile_error: Option<unsafe extern "C" fn(arg1: *mut c_void, arg2: *mut c_char, arg3: c_uint) -> c_int>, pub local_infile_userdata: *mut c_void, pub extension: *mut st_mysql_options_extention,
}

Fields§

§connect_timeout: c_uint§read_timeout: c_uint§write_timeout: c_uint§port: c_uint§protocol: c_uint§client_flag: c_ulong§host: *mut c_char§user: *mut c_char§password: *mut c_char§unix_socket: *mut c_char§db: *mut c_char§init_commands: *mut st_mysql_options_st_dynamic_array§my_cnf_file: *mut c_char§my_cnf_group: *mut c_char§charset_dir: *mut c_char§charset_name: *mut c_char§ssl_key: *mut c_char§ssl_cert: *mut c_char§ssl_ca: *mut c_char§ssl_capath: *mut c_char§ssl_cipher: *mut c_char§shared_memory_base_name: *mut c_char§max_allowed_packet: c_ulong§use_ssl: my_bool§compress: my_bool§named_pipe: my_bool§unused1: my_bool§unused2: my_bool§unused3: my_bool§unused4: my_bool§methods_to_use: mysql_option§ci: st_mysql_options__bindgen_ty_1§unused5: my_bool§report_data_truncation: my_bool§local_infile_init: Option<unsafe extern "C" fn(arg1: *mut *mut c_void, arg2: *const c_char, arg3: *mut c_void) -> c_int>§local_infile_read: Option<unsafe extern "C" fn(arg1: *mut c_void, arg2: *mut c_char, arg3: c_uint) -> c_int>§local_infile_end: Option<unsafe extern "C" fn(arg1: *mut c_void)>§local_infile_error: Option<unsafe extern "C" fn(arg1: *mut c_void, arg2: *mut c_char, arg3: c_uint) -> c_int>§local_infile_userdata: *mut c_void§extension: *mut st_mysql_options_extention

Trait Implementations§

source§

impl Clone for st_mysql_options

source§

fn clone(&self) -> Self

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_options

source§

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

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

impl Copy for st_mysql_options

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