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§

Implementations on Foreign Types§

source§

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

Implementors§

source§

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

source§

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

source§

impl<'a, G, F> IntoNodeReferences for &'a NodeFiltered<G, F>where
G: IntoNodeReferences,
F: FilterNode<G::NodeId>,

source§

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

source§

impl<'a, N, E, Ty> IntoNodeReferences for &'a GraphMap<N, E, Ty>where
N: NodeTrait,
Ty: EdgeType,

§

type NodeRef = (N, &'a N)

§

type NodeReferences = NodeReferences<'a, N, E, Ty>

source§

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

§

type NodeRef = (Ix, &'a N)

§

type NodeReferences = NodeReferences<'a, N, Ix>

source§

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

source§

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

source§

impl<'a, N, E, Ty: EdgeType, Null: Nullable<Wrapped = E>, Ix: IndexType> IntoNodeReferences for &'a MatrixGraph<N, E, Ty, Null, Ix>

source§

impl<G> IntoNodeReferences for Reversed<G>where
G: IntoNodeReferences,