Trait GraphEdgeTo

Source
pub trait GraphEdgeTo: GraphBase {
    // Required method
    fn edge_to(&self, id: Self::EdgeID) -> Self::NodeID;
}

Required Methods§

Source

fn edge_to(&self, id: Self::EdgeID) -> Self::NodeID

Implementations on Foreign Types§

Source§

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

Source§

fn edge_to(&self, id: Self::EdgeID) -> Self::NodeID

Implementors§