pub enum LogicalEvent {
Begin {
final_lsn: PgLsn,
xid: i64,
},
Commit {
commit_lsn: PgLsn,
end_lsn: PgLsn,
commit_timestamp_ms: i64,
},
Relation(RelationEvent),
Row(RowEvent),
}Variants§
Trait Implementations§
Source§impl Clone for LogicalEvent
impl Clone for LogicalEvent
Source§fn clone(&self) -> LogicalEvent
fn clone(&self) -> LogicalEvent
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for LogicalEvent
impl Debug for LogicalEvent
impl Eq for LogicalEvent
Source§impl PartialEq for LogicalEvent
impl PartialEq for LogicalEvent
Source§fn eq(&self, other: &LogicalEvent) -> bool
fn eq(&self, other: &LogicalEvent) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for LogicalEvent
Auto Trait Implementations§
impl Freeze for LogicalEvent
impl RefUnwindSafe for LogicalEvent
impl Send for LogicalEvent
impl Sync for LogicalEvent
impl Unpin for LogicalEvent
impl UnsafeUnpin for LogicalEvent
impl UnwindSafe for LogicalEvent
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