VisitEdge

Trait VisitEdge 

Source
pub trait VisitEdge<G: WithEdge> {
    // Required method
    fn visit_edge(&mut self, g: &G, e: Edge<G>) -> Control;
}

Required Methods§

Source

fn visit_edge(&mut self, g: &G, e: Edge<G>) -> Control

Implementors§

Source§

impl<'a, G, T> VisitEdge<G> for Add1<'a, T>
where G: WithEdge, T: Counter,

Source§

impl<G, F, R> VisitEdge<G> for F
where G: WithEdge, F: FnMut(Edge<G>) -> R, R: Into<Control>,