[][src]Struct rs_graph::adjacencies::OutEdges

pub struct OutEdges<'g, G>(pub &'g G);

Neighbor access over all outgoing edges of a Digraph.

Trait Implementations

impl<'a, 'g: 'a, G> Adjacencies<'a> for OutEdges<'g, G> where
    G: Directed<'g>, 
[src]

type Incidence = G::OutEdge

impl<'a, 'g: 'a, G> GraphType<'a> for OutEdges<'g, G> where
    G: Directed<'g>, 
[src]

type Node = G::Node

Type of a node.

type Edge = G::Edge

Type of an edge.

Auto Trait Implementations

impl<'g, G> RefUnwindSafe for OutEdges<'g, G> where
    G: RefUnwindSafe

impl<'g, G> Send for OutEdges<'g, G> where
    G: Sync

impl<'g, G> Sync for OutEdges<'g, G> where
    G: Sync

impl<'g, G> Unpin for OutEdges<'g, G>

impl<'g, G> UnwindSafe for OutEdges<'g, G> where
    G: RefUnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.