pub enum ArchiveFormat {
    TarGzip,
    TarXz,
    // some variants omitted
}Expand description
Represents the formats used by archives from this channel.
Variants§
TarGzip
The archive is a tar archive compressed with gzip.
TarXz
The archive is a tar archive compressed with xz.
Trait Implementations§
Source§impl Clone for ArchiveFormat
 
impl Clone for ArchiveFormat
Source§fn clone(&self) -> ArchiveFormat
 
fn clone(&self) -> ArchiveFormat
Returns a duplicate 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 ArchiveFormat
 
impl Debug for ArchiveFormat
Source§impl Display for ArchiveFormat
 
impl Display for ArchiveFormat
Source§impl Hash for ArchiveFormat
 
impl Hash for ArchiveFormat
Source§impl Ord for ArchiveFormat
 
impl Ord for ArchiveFormat
Source§fn cmp(&self, other: &ArchiveFormat) -> Ordering
 
fn cmp(&self, other: &ArchiveFormat) -> 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 ArchiveFormat
 
impl PartialEq for ArchiveFormat
Source§impl PartialOrd for ArchiveFormat
 
impl PartialOrd for ArchiveFormat
impl Eq for ArchiveFormat
impl StructuralPartialEq for ArchiveFormat
Auto Trait Implementations§
impl Freeze for ArchiveFormat
impl RefUnwindSafe for ArchiveFormat
impl Send for ArchiveFormat
impl Sync for ArchiveFormat
impl Unpin for ArchiveFormat
impl UnwindSafe for ArchiveFormat
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