pub enum ArchiveType {
Unsigned,
Signed,
}Expand description
Type of binary package archive.
Variants§
Unsigned
Unsigned package (plain compressed tarball)
Signed
Signed package (ar archive containing tarball + signatures)
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 PartialEq for ArchiveType
impl PartialEq for ArchiveType
impl Copy 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> 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.