pub struct VnodeStatistics {
pub active: u32,
pub alloc: u32,
pub get: u32,
pub hold: u32,
pub rele: u32,
pub reclaim: u32,
pub remove: u32,
pub free: u32,
}
Fields§
§active: u32
Number of vnodes not on free lists.
alloc: u32
Number of times vn_alloc called.
get: u32
Number of times vn_get called.
hold: u32
Number of times vn_hold called.
rele: u32
Number of times vn_rele called.
reclaim: u32
Number of times vn_reclaim called.
remove: u32
Number of times vn_remove called.
free: u32
Number of times vn_free called.
Auto Trait Implementations§
impl Freeze for VnodeStatistics
impl RefUnwindSafe for VnodeStatistics
impl Send for VnodeStatistics
impl Sync for VnodeStatistics
impl Unpin for VnodeStatistics
impl UnwindSafe for VnodeStatistics
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