[][src]Struct rs_graph::linkedlistgraph::Edge

pub struct Edge<ID = u32>(_)
where
    ID: PrimInt + Unsigned
;

Edge of a linked list graph.

This is basically a newtype of the arc index. Note that e == g.reverse(e).

Trait Implementations

impl<ID: Clone> Clone for Edge<ID> where
    ID: PrimInt + Unsigned
[src]

impl<ID: Copy> Copy for Edge<ID> where
    ID: PrimInt + Unsigned
[src]

impl<ID: Debug> Debug for Edge<ID> where
    ID: PrimInt + Unsigned
[src]

impl<ID> DirectedEdge for Edge<ID> where
    ID: PrimInt + Unsigned
[src]

type Edge = Self

The underlying edge.

impl<ID> Display for Edge<ID> where
    ID: PrimInt + Unsigned + Display
[src]

impl<ID: Eq> Eq for Edge<ID> where
    ID: PrimInt + Unsigned
[src]

impl<ID> Hash for Edge<ID> where
    ID: PrimInt + Unsigned + Hash
[src]

impl<ID> Indexable for Edge<ID> where
    ID: PrimInt + Unsigned
[src]

impl<ID> PartialEq<Edge<ID>> for Edge<ID> where
    ID: PrimInt + Unsigned
[src]

impl<ID> StructuralEq for Edge<ID> where
    ID: PrimInt + Unsigned
[src]

Auto Trait Implementations

impl<ID> RefUnwindSafe for Edge<ID> where
    ID: RefUnwindSafe

impl<ID> Send for Edge<ID> where
    ID: Send

impl<ID> Sync for Edge<ID> where
    ID: Sync

impl<ID> Unpin for Edge<ID> where
    ID: Unpin

impl<ID> UnwindSafe for Edge<ID> where
    ID: 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> ToString for T where
    T: Display + ?Sized
[src]

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.