pub enum ArchiveType {
Zip,
TarGz,
Tgz,
Unknown,
}
Variants§
Implementations§
Source§impl ArchiveType
impl ArchiveType
pub fn try_to_string(&self) -> Result<String>
Trait Implementations§
Source§impl Clone for ArchiveType
impl Clone for ArchiveType
Source§fn clone(&self) -> ArchiveType
fn clone(&self) -> ArchiveType
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 ArchiveType
impl Debug for ArchiveType
Source§impl Ord for ArchiveType
impl Ord for ArchiveType
Source§fn cmp(&self, other: &ArchiveType) -> Ordering
fn cmp(&self, other: &ArchiveType) -> 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 ArchiveType
impl PartialEq for ArchiveType
Source§impl PartialOrd for ArchiveType
impl PartialOrd for ArchiveType
Source§impl TryFrom<&PathBuf> for ArchiveType
impl TryFrom<&PathBuf> for ArchiveType
impl Eq for ArchiveType
impl StructuralPartialEq for ArchiveType
Auto Trait Implementations§
impl Freeze for ArchiveType
impl RefUnwindSafe for ArchiveType
impl Send for ArchiveType
impl Sync for ArchiveType
impl Unpin for ArchiveType
impl UnwindSafe for ArchiveType
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> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
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.