#[non_exhaustive]pub enum VolumeScheme {
Mbr,
Gpt,
Apm,
Vss,
ApfsContainer,
Lvm,
}Expand description
The partitioning/volume scheme.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Trait Implementations§
Source§impl Clone for VolumeScheme
impl Clone for VolumeScheme
Source§fn clone(&self) -> VolumeScheme
fn clone(&self) -> VolumeScheme
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 VolumeScheme
Source§impl Debug for VolumeScheme
impl Debug for VolumeScheme
impl Eq for VolumeScheme
Source§impl Hash for VolumeScheme
impl Hash for VolumeScheme
Source§impl PartialEq for VolumeScheme
impl PartialEq for VolumeScheme
impl StructuralPartialEq for VolumeScheme
Auto Trait Implementations§
impl Freeze for VolumeScheme
impl RefUnwindSafe for VolumeScheme
impl Send for VolumeScheme
impl Sync for VolumeScheme
impl Unpin for VolumeScheme
impl UnsafeUnpin for VolumeScheme
impl UnwindSafe for VolumeScheme
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