[][src]Struct petgraph::adj::EdgeIndex

pub struct EdgeIndex<Ix = DefaultIx> where
    Ix: IndexType
{ /* fields omitted */ }

Adjacency list edge index type, a pair of integers.

Trait Implementations

impl<Ix: Clone> Clone for EdgeIndex<Ix> where
    Ix: IndexType
[src]

impl<Ix: Copy> Copy for EdgeIndex<Ix> where
    Ix: IndexType
[src]

impl<Ix: Debug> Debug for EdgeIndex<Ix> where
    Ix: IndexType
[src]

impl<Ix: Eq> Eq for EdgeIndex<Ix> where
    Ix: IndexType
[src]

impl<Ix: Hash> Hash for EdgeIndex<Ix> where
    Ix: IndexType
[src]

impl<Ix: Ord> Ord for EdgeIndex<Ix> where
    Ix: IndexType
[src]

impl<Ix: PartialEq> PartialEq<EdgeIndex<Ix>> for EdgeIndex<Ix> where
    Ix: IndexType
[src]

impl<Ix: PartialOrd> PartialOrd<EdgeIndex<Ix>> for EdgeIndex<Ix> where
    Ix: IndexType
[src]

impl<Ix> StructuralEq for EdgeIndex<Ix> where
    Ix: IndexType
[src]

impl<Ix> StructuralPartialEq for EdgeIndex<Ix> where
    Ix: IndexType
[src]

Auto Trait Implementations

impl<Ix> RefUnwindSafe for EdgeIndex<Ix> where
    Ix: RefUnwindSafe
[src]

impl<Ix> Send for EdgeIndex<Ix> where
    Ix: Send
[src]

impl<Ix> Sync for EdgeIndex<Ix> where
    Ix: Sync
[src]

impl<Ix> Unpin for EdgeIndex<Ix> where
    Ix: Unpin
[src]

impl<Ix> UnwindSafe for EdgeIndex<Ix> where
    Ix: UnwindSafe
[src]

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<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

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

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

impl<N> NodeTrait for N where
    N: Copy + Ord + Hash
[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.