pub struct FilesystemInfo {
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§
Source§impl Clone for FilesystemInfo
impl Clone for FilesystemInfo
Source§fn clone(&self) -> FilesystemInfo
fn clone(&self) -> FilesystemInfo
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 moreAuto Trait Implementations§
impl Freeze for FilesystemInfo
impl RefUnwindSafe for FilesystemInfo
impl Send for FilesystemInfo
impl Sync for FilesystemInfo
impl Unpin for FilesystemInfo
impl UnsafeUnpin for FilesystemInfo
impl UnwindSafe for FilesystemInfo
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