#[repr(u8)]pub enum MapFormat {
FlatArray = 0,
ArtTree = 1,
ExtentList = 2,
}Expand description
Cluster map storage format.
Variants§
FlatArray = 0
Simple flat array of cluster entries.
ArtTree = 1
Adaptive Radix Tree for sparse mappings.
ExtentList = 2
Extent list for contiguous ranges.
Trait Implementations§
impl Copy for MapFormat
impl Eq for MapFormat
impl StructuralPartialEq for MapFormat
Auto Trait Implementations§
impl Freeze for MapFormat
impl RefUnwindSafe for MapFormat
impl Send for MapFormat
impl Sync for MapFormat
impl Unpin for MapFormat
impl UnwindSafe for MapFormat
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