Enum daggy::petgraph::EdgeDirection [] [src]

pub enum EdgeDirection {
    Outgoing,
    Incoming,
}

Edge direction

Variants

An Outgoing edge is an outward edge from the current node.

An Incoming edge is an inbound edge to the current node.

Methods

impl EdgeDirection

Return the opposite EdgeDirection.

Trait Implementations

impl Hash for EdgeDirection

impl Eq for EdgeDirection

impl Ord for EdgeDirection

impl PartialOrd<EdgeDirection> for EdgeDirection

impl PartialEq<EdgeDirection> for EdgeDirection

impl Debug for EdgeDirection

Formats the value using the given formatter.

impl Clone for EdgeDirection

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for EdgeDirection