#[repr(C)]pub struct ext4_mount_stats {
pub inodes_count: u32,
pub free_inodes_count: u32,
pub blocks_count: u64,
pub free_blocks_count: u64,
pub block_size: u32,
pub block_group_count: u32,
pub blocks_per_group: u32,
pub inodes_per_group: u32,
pub volume_name: [c_char; 16],
}Expand description
@brief Some of the filesystem stats.
Fields§
§inodes_count: u32§free_inodes_count: u32§blocks_count: u64§free_blocks_count: u64§block_size: u32§block_group_count: u32§blocks_per_group: u32§inodes_per_group: u32§volume_name: [c_char; 16]Trait Implementations§
Source§impl Clone for ext4_mount_stats
impl Clone for ext4_mount_stats
Source§fn clone(&self) -> ext4_mount_stats
fn clone(&self) -> ext4_mount_stats
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ext4_mount_stats
impl Debug for ext4_mount_stats
impl Copy for ext4_mount_stats
Auto Trait Implementations§
impl Freeze for ext4_mount_stats
impl RefUnwindSafe for ext4_mount_stats
impl Send for ext4_mount_stats
impl Sync for ext4_mount_stats
impl Unpin for ext4_mount_stats
impl UnwindSafe for ext4_mount_stats
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