pub struct StreamCommitMessage {
pub transaction_id: i32,
pub lsn: i64,
pub final_lsn: i64,
pub timestamp: DateTime<Utc>,
}
Fields§
§transaction_id: i32
Xid of the transaction.
lsn: i64
The LSN of the commit.
final_lsn: i64
The end LSN of the transaction.
timestamp: DateTime<Utc>
Commit timestamp of the transaction.
Auto Trait Implementations§
impl Freeze for StreamCommitMessage
impl RefUnwindSafe for StreamCommitMessage
impl Send for StreamCommitMessage
impl Sync for StreamCommitMessage
impl Unpin for StreamCommitMessage
impl UnwindSafe for StreamCommitMessage
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