Skip to main content

IntoNodeReferences

Trait IntoNodeReferences 

Source
pub trait IntoNodeReferences: Data + IntoNodeIdentifiers {
    type NodeRef: NodeRef<NodeId = Self::NodeId, Weight = Self::NodeWeight>;
    type NodeReferences: Iterator<Item = Self::NodeRef>;

    // Required method
    fn node_references(self) -> Self::NodeReferences;
}
Expand description

Access to the sequence of the graph’s nodes

Required Associated Types§

Source

type NodeRef: NodeRef<NodeId = Self::NodeId, Weight = Self::NodeWeight>

Source

type NodeReferences: Iterator<Item = Self::NodeRef>

Required Methods§

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementations on Foreign Types§

Source§

impl<'a, G> IntoNodeReferences for &'a G

Implementors§

Source§

impl<'a, 'b, G> IntoNodeReferences for &'b Frozen<'a, G>

Source§

impl<'a, G, F> IntoNodeReferences for &'a EdgeFiltered<G, F>

Source§

impl<'a, G, F> IntoNodeReferences for &'a NodeFiltered<G, F>

Source§

impl<'a, Ix, E> IntoNodeReferences for &'a List<E, Ix>
where Ix: IndexType,

Source§

impl<'a, N, E, Ty, Ix> IntoNodeReferences for &'a Csr<N, E, Ty, Ix>
where Ty: EdgeType, Ix: IndexType,

Source§

impl<'a, N, E, Ty, Ix> IntoNodeReferences for &'a Graph<N, E, Ty, Ix>
where Ty: EdgeType, Ix: IndexType,

Source§

impl<G> IntoNodeReferences for Reversed<G>