pub enum GapKind {
PrePartition,
Between,
PostPartition,
}Expand description
Classification of a gap’s position on the disk.
Variants§
PrePartition
Space between LBA 0 (MBR sector) and the first partition.
Between
Space between two adjacent partitions.
PostPartition
Space after the last partition, before the end of the disk.
Trait Implementations§
impl Copy for GapKind
impl Eq for GapKind
impl StructuralPartialEq for GapKind
Auto Trait Implementations§
impl Freeze for GapKind
impl RefUnwindSafe for GapKind
impl Send for GapKind
impl Sync for GapKind
impl Unpin for GapKind
impl UnsafeUnpin for GapKind
impl UnwindSafe for GapKind
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