#[repr(C)]pub struct xl_xact_parsed_abort {
pub xact_time: TimestampTz,
pub xinfo: uint32,
pub dbId: Oid,
pub tsId: Oid,
pub nsubxacts: c_int,
pub subxacts: *mut TransactionId,
pub nrels: c_int,
pub xnodes: *mut RelFileNode,
pub twophase_xid: TransactionId,
pub twophase_gid: [c_char; 200],
pub origin_lsn: XLogRecPtr,
pub origin_timestamp: TimestampTz,
}
Fields§
§xact_time: TimestampTz
§xinfo: uint32
§dbId: Oid
§tsId: Oid
§nsubxacts: c_int
§subxacts: *mut TransactionId
§nrels: c_int
§xnodes: *mut RelFileNode
§twophase_xid: TransactionId
§twophase_gid: [c_char; 200]
§origin_lsn: XLogRecPtr
§origin_timestamp: TimestampTz
Trait Implementations§
Source§impl Clone for xl_xact_parsed_abort
impl Clone for xl_xact_parsed_abort
Source§fn clone(&self) -> xl_xact_parsed_abort
fn clone(&self) -> xl_xact_parsed_abort
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for xl_xact_parsed_abort
impl Debug for xl_xact_parsed_abort
Source§impl Default for xl_xact_parsed_abort
impl Default for xl_xact_parsed_abort
impl Copy for xl_xact_parsed_abort
Auto Trait Implementations§
impl Freeze for xl_xact_parsed_abort
impl RefUnwindSafe for xl_xact_parsed_abort
impl !Send for xl_xact_parsed_abort
impl !Sync for xl_xact_parsed_abort
impl Unpin for xl_xact_parsed_abort
impl UnwindSafe for xl_xact_parsed_abort
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