pub struct FsInfo {
pub max_fds: u32,
pub free_fds: u32,
pub max_volumes: u32,
pub free_volumes: u32,
}Expand description
Statistics about the overall file system.
Fields§
§max_fds: u32Total number of file descriptors.
free_fds: u32Total number that are free.
max_volumes: u32Maximum number of volumes.
free_volumes: u32Total number of volumes free.
Trait Implementations§
impl Copy for FsInfo
impl Eq for FsInfo
impl StructuralPartialEq for FsInfo
Auto Trait Implementations§
impl Freeze for FsInfo
impl RefUnwindSafe for FsInfo
impl Send for FsInfo
impl Sync for FsInfo
impl Unpin for FsInfo
impl UnsafeUnpin for FsInfo
impl UnwindSafe for FsInfo
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