pub struct BinlogParser {
pub checksum_length: u8,
pub table_map_event_by_table_id: HashMap<u64, TableMapEvent>,
}
Fields§
§checksum_length: u8
§table_map_event_by_table_id: HashMap<u64, TableMapEvent>
Implementations§
source§impl BinlogParser
impl BinlogParser
pub fn check_magic<S: Read + Seek>( &mut self, stream: &mut S ) -> Result<(), BinlogError>
pub fn next<S: Read + Seek>( &mut self, stream: &mut S ) -> Result<(EventHeader, EventData), BinlogError>
Auto Trait Implementations§
impl RefUnwindSafe for BinlogParser
impl Send for BinlogParser
impl Sync for BinlogParser
impl Unpin for BinlogParser
impl UnwindSafe for BinlogParser
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