pub enum TarBasedFmt {
Tar,
Tbz2,
Tgz,
Txz,
Tzstd,
}
Variants§
Tar
Download format is TAR (uncompressed)
Tbz2
Download format is TAR + Bzip2
Tgz
Download format is TGZ (TAR + GZip)
Txz
Download format is TAR + XZ
Tzstd
Download format is TAR + Zstd
Trait Implementations§
Source§impl Clone for TarBasedFmt
impl Clone for TarBasedFmt
Source§fn clone(&self) -> TarBasedFmt
fn clone(&self) -> TarBasedFmt
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 TarBasedFmt
impl Debug for TarBasedFmt
Source§impl Display for TarBasedFmt
impl Display for TarBasedFmt
Source§impl From<TarBasedFmt> for PkgFmt
impl From<TarBasedFmt> for PkgFmt
Source§fn from(fmt: TarBasedFmt) -> PkgFmt
fn from(fmt: TarBasedFmt) -> PkgFmt
Converts to this type from the input type.
Source§impl PartialEq for TarBasedFmt
impl PartialEq for TarBasedFmt
impl Copy for TarBasedFmt
impl Eq for TarBasedFmt
impl StructuralPartialEq for TarBasedFmt
Auto Trait Implementations§
impl Freeze for TarBasedFmt
impl RefUnwindSafe for TarBasedFmt
impl Send for TarBasedFmt
impl Sync for TarBasedFmt
impl Unpin for TarBasedFmt
impl UnwindSafe for TarBasedFmt
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> ToCompactString for Twhere
T: Display,
impl<T> ToCompactString for Twhere
T: Display,
Source§fn try_to_compact_string(&self) -> Result<CompactString, ToCompactStringError>
fn try_to_compact_string(&self) -> Result<CompactString, ToCompactStringError>
Fallible version of
ToCompactString::to_compact_string()
Read moreSource§fn to_compact_string(&self) -> CompactString
fn to_compact_string(&self) -> CompactString
Converts the given value to a
CompactString
. Read more