Struct mariadb_sys::sysvar_str_t
source · #[repr(C)]pub struct sysvar_str_t {
pub flags: c_int,
pub name: *const c_char,
pub comment: *const c_char,
pub check: mysql_var_check_func,
pub update: mysql_var_update_func,
pub value: *mut *mut c_char,
pub def_val: *mut c_char,
}
Fields§
§flags: c_int
Variable flags
name: *const c_char
Name of the variable
comment: *const c_char
Variable description
check: mysql_var_check_func
Function for getting the variable
update: mysql_var_update_func
Function for setting the variable
value: *mut *mut c_char
Pointer to the value
def_val: *mut c_char
Default value
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for sysvar_str_t
impl !Send for sysvar_str_t
impl !Sync for sysvar_str_t
impl Unpin for sysvar_str_t
impl UnwindSafe for sysvar_str_t
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