pub struct FindCutEdges<G: Graph> { /* private fields */ }Trait Implementations§
Source§impl<G: Graph> Visitor<G> for FindCutEdges<G>
impl<G: Graph> Visitor<G> for FindCutEdges<G>
fn discover_vertex(&mut self, _g: &G, v: Vertex<G>) -> Control
fn discover_back_edge(&mut self, g: &G, e: Edge<G>) -> Control
fn finish_tree_edge(&mut self, g: &G, e: Edge<G>) -> Control
fn start(&mut self, _g: &G) -> Control
fn finish(&mut self, _g: &G) -> Control
fn discover_root_vertex(&mut self, _g: &G, _v: Vertex<G>) -> Control
fn finish_root_vertex(&mut self, _g: &G, _v: Vertex<G>) -> Control
fn finish_vertex(&mut self, _g: &G, _v: Vertex<G>) -> Control
fn discover_edge(&mut self, _g: &G, _e: Edge<G>) -> Control
fn finish_edge(&mut self, _g: &G, _e: Edge<G>) -> Control
fn discover_tree_edge(&mut self, _g: &G, _e: Edge<G>) -> Control
fn discover_cross_or_forward_edge(&mut self, _g: &G, _e: Edge<G>) -> Control
Auto Trait Implementations§
impl<G> Freeze for FindCutEdges<G>
impl<G> RefUnwindSafe for FindCutEdges<G>
impl<G> Send for FindCutEdges<G>
impl<G> Sync for FindCutEdges<G>
impl<G> Unpin for FindCutEdges<G>
impl<G> UnwindSafe for FindCutEdges<G>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more