pub struct FileState {
pub allocated: u64,
pub free: u64,
pub max: u64,
}
Fields§
§allocated: u64
The number of allocated file handles.
(i.e. the number of files presently opened)
free: u64
The number of free file handles.
max: u64
The maximum number of file handles.
This may be u64::MAX
Trait Implementations§
Auto Trait Implementations§
impl Freeze for FileState
impl RefUnwindSafe for FileState
impl Send for FileState
impl Sync for FileState
impl Unpin for FileState
impl UnwindSafe for FileState
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