pub enum DepType {
Depends = 1,
PreDepends = 2,
Suggests = 3,
Recommends = 4,
Conflicts = 5,
Replaces = 6,
Obsoletes = 7,
DpkgBreaks = 8,
Enhances = 9,
}
Expand description
The different types of Dependencies.
Variants§
Depends = 1
PreDepends = 2
Suggests = 3
Recommends = 4
Conflicts = 5
Replaces = 6
Obsoletes = 7
DpkgBreaks = 8
Enhances = 9
Trait Implementations§
impl Eq for DepType
impl StructuralPartialEq for DepType
Auto Trait Implementations§
impl Freeze for DepType
impl RefUnwindSafe for DepType
impl Send for DepType
impl Sync for DepType
impl Unpin for DepType
impl UnwindSafe for DepType
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