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

Outbound
Inbound

Trait Implementations

impl Clone for EdgeDirection[src]

impl Copy for EdgeDirection[src]

impl Debug for EdgeDirection[src]

impl Eq for EdgeDirection[src]

impl FromStr for EdgeDirection[src]

type Err = ValidationError

The associated error which can be returned from parsing.

impl Hash for EdgeDirection[src]

impl PartialEq<EdgeDirection> for EdgeDirection[src]

impl StructuralEq for EdgeDirection[src]

impl StructuralPartialEq for EdgeDirection[src]

Auto Trait Implementations

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, 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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,