pub enum ArchiveCompressionAlgorithm {
None,
Lz4,
Zlib,
Lzma,
Lzfse,
Lzbitmap,
}Variants§
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 moreSource§impl Debug for ArchiveCompressionAlgorithm
impl Debug 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 Copy for ArchiveCompressionAlgorithm
impl Eq for ArchiveCompressionAlgorithm
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