pub enum DependencyNode {
Self_,
Child(FlyStr, Option<FlyStr>),
Collection(FlyStr),
Environment(FlyStr),
Capability(FlyStr),
}
Expand description
A node in the DependencyGraph. The first string describes the type of node and the second string is the name of the node.
Variants§
Trait Implementations§
Source§impl Clone for DependencyNode
impl Clone for DependencyNode
Source§fn clone(&self) -> DependencyNode
fn clone(&self) -> DependencyNode
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 DependencyNode
impl Debug for DependencyNode
Source§impl Display for DependencyNode
impl Display for DependencyNode
Source§impl Hash for DependencyNode
impl Hash for DependencyNode
Source§impl Ord for DependencyNode
impl Ord for DependencyNode
Source§fn cmp(&self, other: &DependencyNode) -> Ordering
fn cmp(&self, other: &DependencyNode) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for DependencyNode
impl PartialEq for DependencyNode
Source§impl PartialOrd for DependencyNode
impl PartialOrd for DependencyNode
impl Eq for DependencyNode
impl StructuralPartialEq for DependencyNode
Auto Trait Implementations§
impl Freeze for DependencyNode
impl RefUnwindSafe for DependencyNode
impl Send for DependencyNode
impl Sync for DependencyNode
impl Unpin for DependencyNode
impl UnwindSafe for DependencyNode
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