pub struct FsInfo {
pub uuid: Uuid,
pub num_devices: u64,
pub max_id: u64,
pub nodesize: u32,
pub sectorsize: u32,
pub generation: u64,
}Expand description
Information about a mounted btrfs filesystem, as returned by
BTRFS_IOC_FS_INFO.
Fields§
§uuid: UuidFilesystem UUID.
num_devices: u64Number of devices in the filesystem.
max_id: u64Highest device ID in the filesystem.
nodesize: u32B-tree node size in bytes.
sectorsize: u32Sector size in bytes.
generation: u64Generation number of the filesystem.
Trait Implementations§
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