pub enum DecodedMessage {
Begin {
final_lsn: PgLsn,
xid: i64,
},
Commit {
commit_lsn: PgLsn,
end_lsn: PgLsn,
commit_timestamp_ms: i64,
},
Relation(RelationEvent),
Row(RowEvent),
Keepalive,
}Variants§
Trait Implementations§
Source§impl Clone for DecodedMessage
impl Clone for DecodedMessage
Source§fn clone(&self) -> DecodedMessage
fn clone(&self) -> DecodedMessage
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 DecodedMessage
impl Debug for DecodedMessage
impl Eq for DecodedMessage
Source§impl PartialEq for DecodedMessage
impl PartialEq for DecodedMessage
Source§fn eq(&self, other: &DecodedMessage) -> bool
fn eq(&self, other: &DecodedMessage) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DecodedMessage
Auto Trait Implementations§
impl Freeze for DecodedMessage
impl RefUnwindSafe for DecodedMessage
impl Send for DecodedMessage
impl Sync for DecodedMessage
impl Unpin for DecodedMessage
impl UnsafeUnpin for DecodedMessage
impl UnwindSafe for DecodedMessage
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