Enum debian_packaging::io::Compression
source · pub enum Compression {
None,
Xz,
Gzip,
Bzip2,
Lzma,
}Expand description
Compression format used by Debian primitives.
Variants§
None
No compression (no extension).
Xz
XZ compression (.xz extension).
Gzip
Gzip compression (.gz extension).
Bzip2
Bzip2 compression (.bz2 extension).
Lzma
LZMA compression (.lzma extension).
Implementations§
source§impl Compression
impl Compression
sourcepub fn extension(&self) -> &'static str
pub fn extension(&self) -> &'static str
Filename extension for files compressed in this format.
sourcepub fn default_preferred_order() -> impl Iterator<Item = Compression>
pub fn default_preferred_order() -> impl Iterator<Item = Compression>
The default retrieval preference order for client.
Trait Implementations§
source§impl Clone for Compression
impl Clone for Compression
source§fn clone(&self) -> Compression
fn clone(&self) -> Compression
Returns a copy of the value. Read more
1.0.0 · 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 Compression
impl Debug for Compression
source§impl Hash for Compression
impl Hash for Compression
source§impl Ord for Compression
impl Ord for Compression
source§fn cmp(&self, other: &Compression) -> Ordering
fn cmp(&self, other: &Compression) -> Ordering
1.21.0 · 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 Compression
impl PartialEq for Compression
source§fn eq(&self, other: &Compression) -> bool
fn eq(&self, other: &Compression) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl PartialOrd for Compression
impl PartialOrd for Compression
source§fn partial_cmp(&self, other: &Compression) -> Option<Ordering>
fn partial_cmp(&self, other: &Compression) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self and other) and is used by the <=
operator. Read moreimpl Copy for Compression
impl Eq for Compression
impl StructuralEq for Compression
impl StructuralPartialEq for Compression
Auto Trait Implementations§
impl RefUnwindSafe for Compression
impl Send for Compression
impl Sync for Compression
impl Unpin for Compression
impl UnwindSafe for Compression
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
§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.