pub enum PartitionTableKind {
Gpt,
Mbr,
None,
}Variants§
Trait Implementations§
Source§impl Clone for PartitionTableKind
impl Clone for PartitionTableKind
Source§fn clone(&self) -> PartitionTableKind
fn clone(&self) -> PartitionTableKind
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 moreSource§impl Debug for PartitionTableKind
impl Debug for PartitionTableKind
Source§impl PartialEq for PartitionTableKind
impl PartialEq for PartitionTableKind
Source§fn eq(&self, other: &PartitionTableKind) -> bool
fn eq(&self, other: &PartitionTableKind) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for PartitionTableKind
impl Eq for PartitionTableKind
impl StructuralPartialEq for PartitionTableKind
Auto Trait Implementations§
impl Freeze for PartitionTableKind
impl RefUnwindSafe for PartitionTableKind
impl Send for PartitionTableKind
impl Sync for PartitionTableKind
impl Unpin for PartitionTableKind
impl UnsafeUnpin for PartitionTableKind
impl UnwindSafe for PartitionTableKind
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