pub enum EntryVariant {
Binary(BinaryEntry, Architecture),
Contents(Architecture, Option<String>),
Dep11(Dep11Entry),
Source(SourceEntry),
I18n(I18nEntry),
}
Expand description
Defines the kind of file that this apt entry is.
Variants§
Binary(BinaryEntry, Architecture)
Contents(Architecture, Option<String>)
Dep11(Dep11Entry)
Source(SourceEntry)
I18n(I18nEntry)
Trait Implementations§
Source§impl Clone for EntryVariant
impl Clone for EntryVariant
Source§fn clone(&self) -> EntryVariant
fn clone(&self) -> EntryVariant
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 EntryVariant
impl Debug for EntryVariant
Source§impl Hash for EntryVariant
impl Hash for EntryVariant
Source§impl PartialEq for EntryVariant
impl PartialEq for EntryVariant
impl StructuralPartialEq for EntryVariant
Auto Trait Implementations§
impl Freeze for EntryVariant
impl RefUnwindSafe for EntryVariant
impl Send for EntryVariant
impl Sync for EntryVariant
impl Unpin for EntryVariant
impl UnwindSafe for EntryVariant
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