pub struct BeginPrepareMessage {
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 prepare.
final_lsn: i64
The end LSN of the prepared transaction.
timestamp: DateTime<Utc>
Prepare 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 BeginPrepareMessage
impl RefUnwindSafe for BeginPrepareMessage
impl Send for BeginPrepareMessage
impl Sync for BeginPrepareMessage
impl Unpin for BeginPrepareMessage
impl UnwindSafe for BeginPrepareMessage
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