pub enum PartitionTable {
Msdos,
Gpt,
}
Expand description
Specifies whether the partition table on the disk is MSDOS or GPT.
Variants§
Trait Implementations§
Source§impl Clone for PartitionTable
impl Clone for PartitionTable
Source§fn clone(&self) -> PartitionTable
fn clone(&self) -> PartitionTable
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for PartitionTable
impl Debug for PartitionTable
Source§impl Hash for PartitionTable
impl Hash for PartitionTable
Source§impl PartialEq for PartitionTable
impl PartialEq for PartitionTable
impl Copy for PartitionTable
impl StructuralPartialEq for PartitionTable
Auto Trait Implementations§
impl Freeze for PartitionTable
impl RefUnwindSafe for PartitionTable
impl Send for PartitionTable
impl Sync for PartitionTable
impl Unpin for PartitionTable
impl UnwindSafe for PartitionTable
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