pub struct StreamPrepareMessage {
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 StreamPrepareMessage
impl RefUnwindSafe for StreamPrepareMessage
impl Send for StreamPrepareMessage
impl Sync for StreamPrepareMessage
impl Unpin for StreamPrepareMessage
impl UnwindSafe for StreamPrepareMessage
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