[][src]Struct rs_graph::vec::EdgeIndexer

pub struct EdgeIndexer<'a, G>(pub G, _);

An indexer for edges of an IndexGraph.

Trait Implementations

impl<'a, G> Clone for EdgeIndexer<'a, G> where
    G: Clone
[src]

impl<'a, G: Copy> Copy for EdgeIndexer<'a, G>[src]

impl<'a, G> GraphIndexer<G> for EdgeIndexer<'a, G> where
    G: IndexGraphRef<'a>, 
[src]

impl<'a, G> Indexer for EdgeIndexer<'a, G> where
    G: IndexGraphRef<'a>, 
[src]

type Idx = G::Edge

The type of the index items.

type Iter = G::EdgeIter

The an iterator over all allowed items.

Auto Trait Implementations

impl<'a, G> RefUnwindSafe for EdgeIndexer<'a, G> where
    G: RefUnwindSafe

impl<'a, G> Send for EdgeIndexer<'a, G> where
    G: Send

impl<'a, G> Sync for EdgeIndexer<'a, G> where
    G: Sync

impl<'a, G> Unpin for EdgeIndexer<'a, G> where
    G: Unpin

impl<'a, G> UnwindSafe for EdgeIndexer<'a, G> where
    G: 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.