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

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

An indexer for edges of an IndexGraphRef.

Trait Implementations

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

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

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

impl<'g, G, I> GraphIterator<EdgeIndexer<'g, G>> for IndexerIt<I> where
    I: GraphIterator<G>, 
[src]

type Item = I::Item

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

type Idx = G::Edge

The type of the index items.

type Iter = IndexerIt<G::EdgeIt>

Auto Trait Implementations

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

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

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

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

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