pub enum SevenZipCompressionMethod {
Copy,
Lzma,
Lzma2,
Bzip2,
Deflate,
Ppmd,
Unknown,
}Expand description
7-Zip compression method labels.
Variants§
Copy
Copy/stored method.
Lzma
LZMA method.
Lzma2
LZMA2 method.
Bzip2
Bzip2 method.
Deflate
Deflate method.
Ppmd
PPMd method.
Unknown
Unknown or unsupported method.
Implementations§
Trait Implementations§
Source§impl Clone for SevenZipCompressionMethod
impl Clone for SevenZipCompressionMethod
Source§fn clone(&self) -> SevenZipCompressionMethod
fn clone(&self) -> SevenZipCompressionMethod
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 SevenZipCompressionMethod
impl Debug for SevenZipCompressionMethod
Source§impl Default for SevenZipCompressionMethod
impl Default for SevenZipCompressionMethod
Source§fn default() -> SevenZipCompressionMethod
fn default() -> SevenZipCompressionMethod
Returns the “default value” for a type. Read more
Source§impl Display for SevenZipCompressionMethod
impl Display for SevenZipCompressionMethod
Source§impl Hash for SevenZipCompressionMethod
impl Hash for SevenZipCompressionMethod
Source§impl Ord for SevenZipCompressionMethod
impl Ord for SevenZipCompressionMethod
Source§fn cmp(&self, other: &SevenZipCompressionMethod) -> Ordering
fn cmp(&self, other: &SevenZipCompressionMethod) -> 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 SevenZipCompressionMethod
impl PartialEq for SevenZipCompressionMethod
Source§fn eq(&self, other: &SevenZipCompressionMethod) -> bool
fn eq(&self, other: &SevenZipCompressionMethod) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for SevenZipCompressionMethod
impl PartialOrd for SevenZipCompressionMethod
impl Copy for SevenZipCompressionMethod
impl Eq for SevenZipCompressionMethod
impl StructuralPartialEq for SevenZipCompressionMethod
Auto Trait Implementations§
impl Freeze for SevenZipCompressionMethod
impl RefUnwindSafe for SevenZipCompressionMethod
impl Send for SevenZipCompressionMethod
impl Sync for SevenZipCompressionMethod
impl Unpin for SevenZipCompressionMethod
impl UnsafeUnpin for SevenZipCompressionMethod
impl UnwindSafe for SevenZipCompressionMethod
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