pub trait IntoNodeIdentifiers: GraphRef {
type NodeIdentifiers: Iterator<Item = Self::NodeId>;
// Required method
fn node_identifiers(self) -> Self::NodeIdentifiers;
}
Expand description
Access to the sequence of the graph’s NodeId
s.
Required Associated Types§
type NodeIdentifiers: Iterator<Item = Self::NodeId>
Required Methods§
fn node_identifiers(self) -> Self::NodeIdentifiers
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.