Struct mariadb_sys::st_range_seq_if
source · #[repr(C)]pub struct st_range_seq_if {
pub get_key_info: Option<unsafe extern "C" fn(init_params: *mut c_void, length: *mut uint, map: *mut key_part_map)>,
pub init: Option<unsafe extern "C" fn(init_params: *mut c_void, n_ranges: uint, flags: uint) -> range_seq_t>,
pub next: Option<unsafe extern "C" fn(seq: range_seq_t, range: *mut KEY_MULTI_RANGE) -> bool>,
pub skip_record: Option<unsafe extern "C" fn(seq: range_seq_t, range_info: range_id_t, rowid: *mut uchar) -> bool>,
pub skip_index_tuple: Option<unsafe extern "C" fn(seq: range_seq_t, range_info: range_id_t) -> bool>,
}
Fields§
§get_key_info: Option<unsafe extern "C" fn(init_params: *mut c_void, length: *mut uint, map: *mut key_part_map)>
§init: Option<unsafe extern "C" fn(init_params: *mut c_void, n_ranges: uint, flags: uint) -> range_seq_t>
§next: Option<unsafe extern "C" fn(seq: range_seq_t, range: *mut KEY_MULTI_RANGE) -> bool>
§skip_record: Option<unsafe extern "C" fn(seq: range_seq_t, range_info: range_id_t, rowid: *mut uchar) -> bool>
§skip_index_tuple: Option<unsafe extern "C" fn(seq: range_seq_t, range_info: range_id_t) -> bool>
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for st_range_seq_if
impl Send for st_range_seq_if
impl Sync for st_range_seq_if
impl Unpin for st_range_seq_if
impl UnwindSafe for st_range_seq_if
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