pub struct SmbStatVfs {
pub bsize: u64,
pub frsize: u64,
pub blocks: u64,
pub bfree: u64,
pub bavail: u64,
pub files: u64,
pub ffree: u64,
pub favail: u64,
pub fsid: u64,
pub flag: u64,
pub namemax: u64,
}Expand description
Smb statvfs type
Fields§
§bsize: u64File system block size
frsize: u64Fragment size
blocks: u64Size of fs in f_frsize units
bfree: u64Number of free blocks
bavail: u64Number of free blocks for unprivileged users
files: u64Number of inodes
ffree: u64Number of free inodes
favail: u64Number of free inodes for unprivileged users
fsid: u64Filesystem ID
flag: u64Mount flags
namemax: u64Maximum filename length
Trait Implementations§
Source§impl Clone for SmbStatVfs
impl Clone for SmbStatVfs
Source§fn clone(&self) -> SmbStatVfs
fn clone(&self) -> SmbStatVfs
Returns a duplicate 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 SmbStatVfs
impl Debug for SmbStatVfs
Auto Trait Implementations§
impl Freeze for SmbStatVfs
impl RefUnwindSafe for SmbStatVfs
impl Send for SmbStatVfs
impl Sync for SmbStatVfs
impl Unpin for SmbStatVfs
impl UnwindSafe for SmbStatVfs
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