pub enum IsoVolumeKind {
Bootable,
Data,
Audio,
Hybrid,
Unknown,
}Expand description
ISO volume kind labels.
Variants§
Bootable
Bootable image label.
Data
Data image label.
Audio
Audio image label.
Hybrid
Hybrid volume label.
Unknown
Unknown or intentionally unspecified volume kind.
Implementations§
Trait Implementations§
Source§impl Clone for IsoVolumeKind
impl Clone for IsoVolumeKind
Source§fn clone(&self) -> IsoVolumeKind
fn clone(&self) -> IsoVolumeKind
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 IsoVolumeKind
impl Debug for IsoVolumeKind
Source§impl Default for IsoVolumeKind
impl Default for IsoVolumeKind
Source§fn default() -> IsoVolumeKind
fn default() -> IsoVolumeKind
Returns the “default value” for a type. Read more
Source§impl Display for IsoVolumeKind
impl Display for IsoVolumeKind
Source§impl Hash for IsoVolumeKind
impl Hash for IsoVolumeKind
Source§impl Ord for IsoVolumeKind
impl Ord for IsoVolumeKind
Source§fn cmp(&self, other: &IsoVolumeKind) -> Ordering
fn cmp(&self, other: &IsoVolumeKind) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for IsoVolumeKind
impl PartialEq for IsoVolumeKind
Source§fn eq(&self, other: &IsoVolumeKind) -> bool
fn eq(&self, other: &IsoVolumeKind) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for IsoVolumeKind
impl PartialOrd for IsoVolumeKind
impl Copy for IsoVolumeKind
impl Eq for IsoVolumeKind
impl StructuralPartialEq for IsoVolumeKind
Auto Trait Implementations§
impl Freeze for IsoVolumeKind
impl RefUnwindSafe for IsoVolumeKind
impl Send for IsoVolumeKind
impl Sync for IsoVolumeKind
impl Unpin for IsoVolumeKind
impl UnsafeUnpin for IsoVolumeKind
impl UnwindSafe for IsoVolumeKind
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