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