pub enum PartitionSchemeType {
Mbr,
Gpt,
Hybrid,
}Expand description
The type of partition scheme detected or to be created.
Variants§
Mbr
Master Boot Record (legacy BIOS).
Gpt
GUID Partition Table (UEFI).
Hybrid
Hybrid MBR (GPT with MBR entries for dual BIOS/UEFI boot).
Trait Implementations§
Source§impl Clone for PartitionSchemeType
impl Clone for PartitionSchemeType
Source§fn clone(&self) -> PartitionSchemeType
fn clone(&self) -> PartitionSchemeType
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 PartitionSchemeType
Source§impl Debug for PartitionSchemeType
impl Debug for PartitionSchemeType
Source§impl Display for PartitionSchemeType
impl Display for PartitionSchemeType
impl Eq for PartitionSchemeType
Source§impl PartialEq for PartitionSchemeType
impl PartialEq for PartitionSchemeType
impl StructuralPartialEq for PartitionSchemeType
Auto Trait Implementations§
impl Freeze for PartitionSchemeType
impl RefUnwindSafe for PartitionSchemeType
impl Send for PartitionSchemeType
impl Sync for PartitionSchemeType
impl Unpin for PartitionSchemeType
impl UnsafeUnpin for PartitionSchemeType
impl UnwindSafe for PartitionSchemeType
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