Enum petgraph::data::Element [−][src]
Expand description
A graph element.
A sequence of Elements, for example an iterator, is laid out as follows: Nodes are implicitly given the index of their appearance in the sequence. The edges’ source and target fields refer to these indices.
Variants
Node
A graph node.
Edge
A graph edge.
Trait Implementations
Auto Trait Implementations
impl<N, E> RefUnwindSafe for Element<N, E> where
E: RefUnwindSafe,
N: RefUnwindSafe,
impl<N, E> UnwindSafe for Element<N, E> where
E: UnwindSafe,
N: UnwindSafe,
Blanket Implementations
Mutably borrows from an owned value. Read more
Compare self to key
and return true
if they are equal.