Struct rs_graph::adapters::network::NetworkEdgeIt[][src]

pub struct NetworkEdgeIt<G, I>(_, _)
where
    I: GraphIterator<G>
;

Graph iterator over all edges of the Network.

Trait Implementations

impl<G, I> Clone for NetworkEdgeIt<G, I> where
    I: GraphIterator<G>,
    I::Item: Clone
[src]

impl<'a, G, I> GraphIterator<Network<'a, G>> for NetworkEdgeIt<G, I> where
    I: GraphIterator<G>,
    I::Item: Clone
[src]

type Item = NetworkEdge<I::Item>

Auto Trait Implementations

impl<G, I> RefUnwindSafe for NetworkEdgeIt<G, I> where
    I: RefUnwindSafe,
    <I as GraphIterator<G>>::Item: RefUnwindSafe

impl<G, I> Send for NetworkEdgeIt<G, I> where
    I: Send,
    <I as GraphIterator<G>>::Item: Send

impl<G, I> Sync for NetworkEdgeIt<G, I> where
    I: Sync,
    <I as GraphIterator<G>>::Item: Sync

impl<G, I> Unpin for NetworkEdgeIt<G, I> where
    I: Unpin,
    <I as GraphIterator<G>>::Item: Unpin

impl<G, I> UnwindSafe for NetworkEdgeIt<G, I> where
    I: UnwindSafe,
    <I as GraphIterator<G>>::Item: UnwindSafe

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.