#[repr(C)]pub struct __db_txn_active {
pub txnid: u_int32_t,
pub parentid: u_int32_t,
pub pid: pid_t,
pub tid: db_threadid_t,
pub lsn: DB_LSN,
pub read_lsn: DB_LSN,
pub mvcc_ref: u_int32_t,
pub priority: u_int32_t,
pub status: u_int32_t,
pub xa_status: u_int32_t,
pub gid: [u_int8_t; 128],
pub name: [c_char; 51],
}
Fields§
§txnid: u_int32_t
§parentid: u_int32_t
§pid: pid_t
§tid: db_threadid_t
§lsn: DB_LSN
§read_lsn: DB_LSN
§mvcc_ref: u_int32_t
§priority: u_int32_t
§status: u_int32_t
§xa_status: u_int32_t
§gid: [u_int8_t; 128]
§name: [c_char; 51]
Trait Implementations§
Source§impl Clone for __db_txn_active
impl Clone for __db_txn_active
Source§fn clone(&self) -> __db_txn_active
fn clone(&self) -> __db_txn_active
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 Default for __db_txn_active
impl Default for __db_txn_active
impl Copy for __db_txn_active
Auto Trait Implementations§
impl Freeze for __db_txn_active
impl RefUnwindSafe for __db_txn_active
impl Send for __db_txn_active
impl Sync for __db_txn_active
impl Unpin for __db_txn_active
impl UnwindSafe for __db_txn_active
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