pub enum BlockType {
Data,
System,
Metadata,
GlobalReserve,
Unknown,
}Expand description
Possible block group types for btrfs
More information on btrfs block groups can be found at btrfs.readthedocs.io.
From<u64> can be used to determine which block group the raw flags from
super::SpaceInfo::flags corresponds to
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for BlockType
impl RefUnwindSafe for BlockType
impl Send for BlockType
impl Sync for BlockType
impl Unpin for BlockType
impl UnwindSafe for BlockType
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