pub struct LockStats {
pub total_files: usize,
pub total_write_locks: usize,
pub total_read_locks: usize,
}Expand description
Statistics about current locks
Fields§
§total_files: usizeNumber of files with locks
total_write_locks: usizeNumber of write locks
total_read_locks: usizeNumber of read locks
Trait Implementations§
Auto Trait Implementations§
impl Freeze for LockStats
impl RefUnwindSafe for LockStats
impl Send for LockStats
impl Sync for LockStats
impl Unpin for LockStats
impl UnsafeUnpin for LockStats
impl UnwindSafe for LockStats
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