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