pub enum ExtentType {
RecordedAllocated,
AllocatedNotRecorded,
NotAllocatedNotRecorded,
NextExtent,
}Available on crate feature
sync only.Expand description
Extent type (allocation descriptor type field)
Variants§
RecordedAllocated
Recorded and allocated
AllocatedNotRecorded
Allocated but not recorded
NotAllocatedNotRecorded
Not allocated and not recorded
NextExtent
Next extent of descriptors
Trait Implementations§
Source§impl Clone for ExtentType
impl Clone for ExtentType
Source§fn clone(&self) -> ExtentType
fn clone(&self) -> ExtentType
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for ExtentType
Source§impl Debug for ExtentType
impl Debug for ExtentType
impl Eq for ExtentType
Source§impl PartialEq for ExtentType
impl PartialEq for ExtentType
impl StructuralPartialEq for ExtentType
Auto Trait Implementations§
impl Freeze for ExtentType
impl RefUnwindSafe for ExtentType
impl Send for ExtentType
impl Sync for ExtentType
impl Unpin for ExtentType
impl UnsafeUnpin for ExtentType
impl UnwindSafe for ExtentType
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