pub trait WithStartNode: DirectedGraph {
    // Required method
    fn start_node(&self) -> Self::Node;
}

Required Methods§

source

fn start_node(&self) -> Self::Node

Implementations on Foreign Types§

source§

impl<'graph, G: WithStartNode> WithStartNode for &'graph G

source§

fn start_node(&self) -> Self::Node

Implementors§