Enum guppy::DependencyKind
source · [−]pub enum DependencyKind {
Normal,
Development,
Build,
}Expand description
A descriptor for the kind of dependency.
Cargo dependencies may be one of three kinds.
Variants
Normal
Normal dependencies.
These are specified in the [dependencies] section.
Development
Dependencies used for development only.
These are specified in the [dev-dependencies] section, and are used for tests,
benchmarks and similar.
Build
Dependencies used for build scripts.
These are specified in the [build-dependencies] section.
Implementations
Trait Implementations
sourceimpl Clone for DependencyKind
impl Clone for DependencyKind
sourcefn clone(&self) -> DependencyKind
fn clone(&self) -> DependencyKind
Returns a copy of the value. Read more
1.0.0 · sourceconst fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for DependencyKind
impl Debug for DependencyKind
sourceimpl Display for DependencyKind
impl Display for DependencyKind
sourceimpl Hash for DependencyKind
impl Hash for DependencyKind
sourceimpl PartialEq<DependencyKind> for DependencyKind
impl PartialEq<DependencyKind> for DependencyKind
sourcefn eq(&self, other: &DependencyKind) -> bool
fn eq(&self, other: &DependencyKind) -> bool
impl Copy for DependencyKind
impl Eq for DependencyKind
impl StructuralEq for DependencyKind
impl StructuralPartialEq for DependencyKind
Auto Trait Implementations
impl RefUnwindSafe for DependencyKind
impl Send for DependencyKind
impl Sync for DependencyKind
impl Unpin for DependencyKind
impl UnwindSafe for DependencyKind
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
sourcefn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.