Trait GraphEdgeRemovable

Source
pub trait GraphEdgeRemovable<E>: GraphBase {
    // Required method
    fn remove_edge(&mut self, id: Self::EdgeID) -> E;
}

Required Methods§

Source

fn remove_edge(&mut self, id: Self::EdgeID) -> E

Implementations on Foreign Types§

Source§

impl<N, E, Ty, Ix> GraphEdgeRemovable<E> for Graph<N, E, Ty, Ix>
where Ty: EdgeType, Ix: IndexType,

Source§

fn remove_edge(&mut self, id: Self::EdgeID) -> E

Implementors§