#[non_exhaustive]pub enum RunAlloc {
Allocated,
Unallocated,
Overwritten,
Unknown,
}Expand description
Run-level allocation — a deleted file can have partly-reallocated clusters; an
allocated file can have sparse holes. Independent of FsMeta::allocated.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Trait Implementations§
impl Copy for RunAlloc
impl Eq for RunAlloc
impl StructuralPartialEq for RunAlloc
Auto Trait Implementations§
impl Freeze for RunAlloc
impl RefUnwindSafe for RunAlloc
impl Send for RunAlloc
impl Sync for RunAlloc
impl Unpin for RunAlloc
impl UnsafeUnpin for RunAlloc
impl UnwindSafe for RunAlloc
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