Struct mariadb_sys::st_io_cache_share
source · #[repr(C)]pub struct st_io_cache_share {
pub mutex: mysql_mutex_t,
pub cond: mysql_cond_t,
pub cond_writer: mysql_cond_t,
pub pos_in_file: my_off_t,
pub source_cache: *mut st_io_cache,
pub buffer: *mut uchar,
pub read_end: *mut uchar,
pub running_threads: c_int,
pub total_threads: c_int,
pub error: c_int,
}Fields§
§mutex: mysql_mutex_t§cond: mysql_cond_t§cond_writer: mysql_cond_t§pos_in_file: my_off_t§source_cache: *mut st_io_cache§buffer: *mut uchar§read_end: *mut uchar§running_threads: c_int§total_threads: c_int§error: c_intAuto Trait Implementations§
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