pub struct TransactionStats {
pub active: usize,
pub committed: usize,
pub aborted: usize,
pub total: usize,
pub version_count: usize,
}Expand description
Transaction manager statistics.
Fields§
§active: usize§committed: usize§aborted: usize§total: usize§version_count: usizeTotal number of versions stored (including historical versions)
Trait Implementations§
Source§impl Clone for TransactionStats
impl Clone for TransactionStats
Source§fn clone(&self) -> TransactionStats
fn clone(&self) -> TransactionStats
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 moreAuto Trait Implementations§
impl Freeze for TransactionStats
impl RefUnwindSafe for TransactionStats
impl Send for TransactionStats
impl Sync for TransactionStats
impl Unpin for TransactionStats
impl UnsafeUnpin for TransactionStats
impl UnwindSafe for TransactionStats
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