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