#[repr(C)]pub struct MYSQL_RPL {
pub file_name_length: usize,
pub file_name: *const c_char,
pub start_position: u64,
pub server_id: c_uint,
pub flags: c_uint,
pub gtid_set_encoded_size: usize,
pub fix_gtid_set: Option<unsafe extern "C" fn(rpl: *mut MYSQL_RPL, packet_gtid_set: *mut c_uchar)>,
pub gtid_set_arg: *mut c_void,
pub size: c_ulong,
pub buffer: *const c_uchar,
}
Fields§
§file_name_length: usize
§file_name: *const c_char
§start_position: u64
§server_id: c_uint
§flags: c_uint
§gtid_set_encoded_size: usize
§fix_gtid_set: Option<unsafe extern "C" fn(rpl: *mut MYSQL_RPL, packet_gtid_set: *mut c_uchar)>
§gtid_set_arg: *mut c_void
§size: c_ulong
§buffer: *const c_uchar
Trait Implementations§
Auto Trait Implementations§
impl Freeze for MYSQL_RPL
impl RefUnwindSafe for MYSQL_RPL
impl !Send for MYSQL_RPL
impl !Sync for MYSQL_RPL
impl Unpin for MYSQL_RPL
impl UnwindSafe for MYSQL_RPL
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