Struct XfsStat

Source
pub struct XfsStat {
Show 17 fields pub extent_allocation: ExtentAllocation, pub allocation_btree: AllocationBTree, pub block_mapping: BlockMapping, pub block_map_btree: BlockMapBTree, pub directory_operations: DirectoryOperations, pub transactions: Transactions, pub inode_operations: InodeOperations, pub log_operations: LogOperations, pub tail_pushing_stats: TailPushingStats, pub io_map_write_convert: IoMapWriteConvert, pub read_write_stats: ReadWriteStats, pub attribute_operations: AttributeOperations, pub inode_clustering: InodeClustering, pub vnode_statistics: VnodeStatistics, pub buf_statistics: BufStatistics, pub extended_precision_counters: ExtendedPrecisionCounters, pub debug: bool,
}

Fields§

§extent_allocation: ExtentAllocation§allocation_btree: AllocationBTree§block_mapping: BlockMapping§block_map_btree: BlockMapBTree§directory_operations: DirectoryOperations§transactions: Transactions§inode_operations: InodeOperations§log_operations: LogOperations§tail_pushing_stats: TailPushingStats§io_map_write_convert: IoMapWriteConvert§read_write_stats: ReadWriteStats§attribute_operations: AttributeOperations§inode_clustering: InodeClustering§vnode_statistics: VnodeStatistics§buf_statistics: BufStatistics§extended_precision_counters: ExtendedPrecisionCounters§debug: bool

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.