#[repr(C)]pub struct MDBX_txn_info {
pub txn_id: u64,
pub txn_reader_lag: u64,
pub txn_space_used: u64,
pub txn_space_limit_soft: u64,
pub txn_space_limit_hard: u64,
pub txn_space_retired: u64,
pub txn_space_leftover: u64,
pub txn_space_dirty: u64,
}Fields§
§txn_id: u64§txn_reader_lag: u64§txn_space_used: u64§txn_space_limit_soft: u64§txn_space_limit_hard: u64§txn_space_retired: u64§txn_space_leftover: u64§txn_space_dirty: u64Trait Implementations§
Source§impl Clone for MDBX_txn_info
impl Clone for MDBX_txn_info
Source§fn clone(&self) -> MDBX_txn_info
fn clone(&self) -> MDBX_txn_info
Returns a duplicate 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 MDBX_txn_info
impl Debug for MDBX_txn_info
impl Copy for MDBX_txn_info
Auto Trait Implementations§
impl Freeze for MDBX_txn_info
impl RefUnwindSafe for MDBX_txn_info
impl Send for MDBX_txn_info
impl Sync for MDBX_txn_info
impl Unpin for MDBX_txn_info
impl UnwindSafe for MDBX_txn_info
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