#[repr(C)]pub struct StatFs {
pub fs_type: usize,
pub block_size: usize,
pub block_count: u64,
pub free_block_count: u64,
pub available_block_count: u64,
pub file_count: u64,
pub available_file_count: u64,
pub file_system_id: [u8; 8],
pub maximum_file_name_length: usize,
pub file_record_size: usize,
pub flags: usize,
pub spare: [usize; 4],
}
Fields§
§fs_type: usize
§block_size: usize
§block_count: u64
§free_block_count: u64
§available_block_count: u64
§file_count: u64
§available_file_count: u64
§file_system_id: [u8; 8]
§maximum_file_name_length: usize
§file_record_size: usize
§flags: usize
§spare: [usize; 4]
Trait Implementations§
impl Eq for StatFs
impl StructuralPartialEq for StatFs
Auto Trait Implementations§
impl Freeze for StatFs
impl RefUnwindSafe for StatFs
impl Send for StatFs
impl Sync for StatFs
impl Unpin for StatFs
impl UnwindSafe for StatFs
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