pub struct LockManagerStats {
pub table_locks_acquired: AtomicU64,
pub table_locks_released: AtomicU64,
pub table_conflicts: AtomicU64,
}Expand description
Lock manager statistics
Fields§
§table_locks_acquired: AtomicU64§table_locks_released: AtomicU64§table_conflicts: AtomicU64Trait Implementations§
Source§impl Debug for LockManagerStats
impl Debug for LockManagerStats
Source§impl Default for LockManagerStats
impl Default for LockManagerStats
Source§fn default() -> LockManagerStats
fn default() -> LockManagerStats
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl !Freeze for LockManagerStats
impl RefUnwindSafe for LockManagerStats
impl Send for LockManagerStats
impl Sync for LockManagerStats
impl Unpin for LockManagerStats
impl UnsafeUnpin for LockManagerStats
impl UnwindSafe for LockManagerStats
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