Enum guppy::graph::DependencyDirection
source · pub enum DependencyDirection {
Forward,
Reverse,
}
Expand description
The direction in which to follow dependencies.
Used by the _directed
methods.
Variants§
Forward
Dependencies from this package to other packages.
Reverse
Reverse dependencies from other packages to this one.
Implementations§
Trait Implementations§
source§impl Clone for DependencyDirection
impl Clone for DependencyDirection
source§fn clone(&self) -> DependencyDirection
fn clone(&self) -> DependencyDirection
Returns a copy 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 DependencyDirection
impl Debug for DependencyDirection
source§impl From<DependencyDirection> for Direction
impl From<DependencyDirection> for Direction
source§fn from(direction: DependencyDirection) -> Self
fn from(direction: DependencyDirection) -> Self
Converts to this type from the input type.
source§impl From<Direction> for DependencyDirection
impl From<Direction> for DependencyDirection
source§impl Hash for DependencyDirection
impl Hash for DependencyDirection
source§impl PartialEq for DependencyDirection
impl PartialEq for DependencyDirection
impl Copy for DependencyDirection
impl Eq for DependencyDirection
impl StructuralPartialEq for DependencyDirection
Auto Trait Implementations§
impl Freeze for DependencyDirection
impl RefUnwindSafe for DependencyDirection
impl Send for DependencyDirection
impl Sync for DependencyDirection
impl Unpin for DependencyDirection
impl UnwindSafe for DependencyDirection
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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> CloneToUninit for Twhere
T: Copy,
impl<T> CloneToUninit for Twhere
T: Copy,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)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.