Enum indradb::EdgeDirection[][src]

pub enum EdgeDirection {
    Outbound,
    Inbound,
}

Specifies what kind of items should be piped from one type of query to another.

Edge and vertex queries can build off of one another via pipes - e.g. you can get the outbound edges of a set of vertices by piping from a vertex query to an edge query. EdgeDirections are used to specify which end of things you want to pipe - either the outbound items or the inbound items.

Variants

Trait Implementations

impl Eq for EdgeDirection
[src]

impl PartialEq for EdgeDirection
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Clone for EdgeDirection
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for EdgeDirection
[src]

Formats the value using the given formatter. Read more

impl Hash for EdgeDirection
[src]

Feeds this value into the given [Hasher]. Read more

Feeds a slice of this type into the given [Hasher]. Read more

impl Copy for EdgeDirection
[src]

Auto Trait Implementations