pub enum ArchiveCompressionAlgorithm {
None,
Lz4,
Zlib,
Lzma,
Lzfse,
Lzbitmap,
}Expand description
Wraps AppleArchive compression algorithm identifiers.
Variants§
None
Wraps the None variant of ArchiveCompressionAlgorithm.
Lz4
Wraps the Lz4 variant of ArchiveCompressionAlgorithm.
Zlib
Wraps the Zlib variant of ArchiveCompressionAlgorithm.
Lzma
Wraps the Lzma variant of ArchiveCompressionAlgorithm.
Lzfse
Wraps the Lzfse variant of ArchiveCompressionAlgorithm.
Lzbitmap
Wraps the Lzbitmap variant of ArchiveCompressionAlgorithm.
Implementations§
Trait Implementations§
Source§impl Clone for ArchiveCompressionAlgorithm
impl Clone for ArchiveCompressionAlgorithm
Source§fn clone(&self) -> ArchiveCompressionAlgorithm
fn clone(&self) -> ArchiveCompressionAlgorithm
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 ArchiveCompressionAlgorithm
Source§impl Debug for ArchiveCompressionAlgorithm
impl Debug for ArchiveCompressionAlgorithm
impl Eq for ArchiveCompressionAlgorithm
Source§impl Hash for ArchiveCompressionAlgorithm
impl Hash for ArchiveCompressionAlgorithm
Source§impl PartialEq for ArchiveCompressionAlgorithm
impl PartialEq for ArchiveCompressionAlgorithm
Source§fn eq(&self, other: &ArchiveCompressionAlgorithm) -> bool
fn eq(&self, other: &ArchiveCompressionAlgorithm) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ArchiveCompressionAlgorithm
Auto Trait Implementations§
impl Freeze for ArchiveCompressionAlgorithm
impl RefUnwindSafe for ArchiveCompressionAlgorithm
impl Send for ArchiveCompressionAlgorithm
impl Sync for ArchiveCompressionAlgorithm
impl Unpin for ArchiveCompressionAlgorithm
impl UnsafeUnpin for ArchiveCompressionAlgorithm
impl UnwindSafe for ArchiveCompressionAlgorithm
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