Struct mariadb_sys::sysvar_ulonglong_t
source · #[repr(C)]pub struct sysvar_ulonglong_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 c_ulonglong,
pub def_val: c_ulonglong,
pub min_val: c_ulonglong,
pub max_val: c_ulonglong,
pub blk_sz: c_ulonglong,
}
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 c_ulonglong
Pointer to the value
def_val: c_ulonglong
Default value
min_val: c_ulonglong
Min value
max_val: c_ulonglong
Max value
blk_sz: c_ulonglong
Block size
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for sysvar_ulonglong_t
impl !Send for sysvar_ulonglong_t
impl !Sync for sysvar_ulonglong_t
impl Unpin for sysvar_ulonglong_t
impl UnwindSafe for sysvar_ulonglong_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