Struct petgraph::graph::EdgeIndex [−] [src]

pub struct EdgeIndex<Ix = DefIndex>(_);

Edge identifier.

Methods

impl<Ix: IndexType = DefIndex> EdgeIndex<Ix>

fn new(x: usize) -> Self

fn index(self) -> usize

fn end() -> Self

An invalid EdgeIndex used to denote absence of an edge, for example to end an adjacency list.

Trait Implementations

impl<Ix: IndexType> Debug for EdgeIndex<Ix>

fn fmt(&self, f: &mut Formatter) -> Result

Derived Implementations

impl<Ix: Hash> Hash for EdgeIndex<Ix> where Ix: Hash

fn hash<__H: Hasher>(&self, __arg_0: &mut __H)

fn hash_slice<H>(data: &[Self], state: &mut H) where H: Hasher

impl<Ix: Ord> Ord for EdgeIndex<Ix> where Ix: Ord

fn cmp(&self, __arg_0: &EdgeIndex<Ix>) -> Ordering

impl<Ix: Eq> Eq for EdgeIndex<Ix> where Ix: Eq

impl<Ix: PartialOrd> PartialOrd for EdgeIndex<Ix> where Ix: PartialOrd

fn partial_cmp(&self, __arg_0: &EdgeIndex<Ix>) -> Option<Ordering>

fn lt(&self, __arg_0: &EdgeIndex<Ix>) -> bool

fn le(&self, __arg_0: &EdgeIndex<Ix>) -> bool

fn gt(&self, __arg_0: &EdgeIndex<Ix>) -> bool

fn ge(&self, __arg_0: &EdgeIndex<Ix>) -> bool

impl<Ix: PartialEq> PartialEq for EdgeIndex<Ix> where Ix: PartialEq

fn eq(&self, __arg_0: &EdgeIndex<Ix>) -> bool

fn ne(&self, __arg_0: &EdgeIndex<Ix>) -> bool

impl<Ix: Clone> Clone for EdgeIndex<Ix> where Ix: Clone

fn clone(&self) -> EdgeIndex<Ix>

fn clone_from(&mut self, source: &Self)

impl<Ix: Copy> Copy for EdgeIndex<Ix> where Ix: Copy