pub struct RowsEvent {
pub table_id: u64,
pub event_type: BinlogEventType,
pub flags: u16,
pub column_count: u64,
pub row_count: usize,
}Expand description
Parsed row-based event summary (types 30-32).
Contains metadata about row changes. Full row data decoding is not performed — only the event structure and row count are extracted.
Fields§
§table_id: u64Internal table ID (matches TABLE_MAP event).
event_type: BinlogEventTypeEvent type.
flags: u16Event flags.
column_count: u64Number of columns involved.
row_count: usizeApproximate row count (estimated from data size).
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for RowsEvent
impl RefUnwindSafe for RowsEvent
impl Send for RowsEvent
impl Sync for RowsEvent
impl Unpin for RowsEvent
impl UnsafeUnpin for RowsEvent
impl UnwindSafe for RowsEvent
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more