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

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

Trait Implementations

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

impl<'a, G, I, N, E> GraphIterator<Network<'a, G>> for NetworkNeighIt<G, I> where
    N: Clone,
    E: Clone,
    I: GraphIterator<G, Item = (E, N)>, 
[src]

type Item = (NetworkEdge<E>, N)

Auto Trait Implementations

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

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

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

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

impl<G, I> UnwindSafe for NetworkNeighIt<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.