pub struct ExtentAllocation {
pub allocated_extents: u32,
pub allocated_blocks: u32,
pub freed_extents: u32,
pub freed_blocks: u32,
}
Fields§
§allocated_extents: u32
Number of file system extents allocated over all XFS filesystems.
allocated_blocks: u32
Number of file system blocks allocated over all XFS filesystems.
freed_extents: u32
Number of file system extents freed over all XFS filesystems.
freed_blocks: u32
Number of file system blocks freed over all XFS filesystems.
Auto Trait Implementations§
impl Freeze for ExtentAllocation
impl RefUnwindSafe for ExtentAllocation
impl Send for ExtentAllocation
impl Sync for ExtentAllocation
impl Unpin for ExtentAllocation
impl UnwindSafe for ExtentAllocation
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