Trait GraphEdgesFrom

Source
pub trait GraphEdgesFrom: GraphBase {
    type EdgesFromOutput;

    // Required method
    fn edges_from(&self, id: Self::NodeID) -> Self::EdgesFromOutput;
}

Required Associated Types§

Required Methods§

Source

fn edges_from(&self, id: Self::NodeID) -> Self::EdgesFromOutput

Implementations on Foreign Types§

Source§

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

Source§

type EdgesFromOutput = Vec<<Graph<N, E, Ty, Ix> as GraphBase>::EdgeID>

Source§

fn edges_from(&self, id: Self::NodeID) -> Self::EdgesFromOutput

Implementors§