pub enum RarVolumeKind {
Single,
MultiPart,
Recovery,
Unknown,
}Expand description
RAR volume kind labels.
Variants§
Single
Single-volume RAR archive.
MultiPart
Multi-part RAR archive.
Recovery
Recovery volume label.
Unknown
Unknown or intentionally unspecified volume kind.
Implementations§
Trait Implementations§
Source§impl Clone for RarVolumeKind
impl Clone for RarVolumeKind
Source§fn clone(&self) -> RarVolumeKind
fn clone(&self) -> RarVolumeKind
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 RarVolumeKind
impl Debug for RarVolumeKind
Source§impl Default for RarVolumeKind
impl Default for RarVolumeKind
Source§fn default() -> RarVolumeKind
fn default() -> RarVolumeKind
Returns the “default value” for a type. Read more
Source§impl Display for RarVolumeKind
impl Display for RarVolumeKind
Source§impl Hash for RarVolumeKind
impl Hash for RarVolumeKind
Source§impl Ord for RarVolumeKind
impl Ord for RarVolumeKind
Source§fn cmp(&self, other: &RarVolumeKind) -> Ordering
fn cmp(&self, other: &RarVolumeKind) -> 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 RarVolumeKind
impl PartialEq for RarVolumeKind
Source§fn eq(&self, other: &RarVolumeKind) -> bool
fn eq(&self, other: &RarVolumeKind) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for RarVolumeKind
impl PartialOrd for RarVolumeKind
impl Copy for RarVolumeKind
impl Eq for RarVolumeKind
impl StructuralPartialEq for RarVolumeKind
Auto Trait Implementations§
impl Freeze for RarVolumeKind
impl RefUnwindSafe for RarVolumeKind
impl Send for RarVolumeKind
impl Sync for RarVolumeKind
impl Unpin for RarVolumeKind
impl UnsafeUnpin for RarVolumeKind
impl UnwindSafe for RarVolumeKind
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