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