pub struct ProjectedNode {
pub label: String,
pub incoming: Vec<Edge>,
pub outgoing: Vec<Edge>,
}Expand description
A graph node with its incoming and outgoing raw dependency evidence.
Fields§
§label: StringThe raw graph identifier represented by this node.
incoming: Vec<Edge>Non-self dependencies targeting this node.
outgoing: Vec<Edge>Non-self dependencies originating from this node.
Trait Implementations§
Source§impl Clone for ProjectedNode
impl Clone for ProjectedNode
Source§fn clone(&self) -> ProjectedNode
fn clone(&self) -> ProjectedNode
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 ProjectedNode
impl Debug for ProjectedNode
Source§impl PartialEq for ProjectedNode
impl PartialEq for ProjectedNode
impl Eq for ProjectedNode
impl StructuralPartialEq for ProjectedNode
Auto Trait Implementations§
impl Freeze for ProjectedNode
impl RefUnwindSafe for ProjectedNode
impl Send for ProjectedNode
impl Sync for ProjectedNode
impl Unpin for ProjectedNode
impl UnwindSafe for ProjectedNode
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,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.