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
OutboundInbound
Trait Implementations
impl Eq for EdgeDirection[src]
impl Eq for EdgeDirectionimpl PartialEq for EdgeDirection[src]
impl PartialEq for EdgeDirectionfn eq(&self, other: &EdgeDirection) -> bool[src]
fn eq(&self, other: &EdgeDirection) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &Rhs) -> bool1.0.0[src]
fn ne(&self, other: &Rhs) -> bool1.0.0
[src]This method tests for !=.
impl Clone for EdgeDirection[src]
impl Clone for EdgeDirectionfn clone(&self) -> EdgeDirection[src]
fn clone(&self) -> EdgeDirectionReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)1.0.0
[src]Performs copy-assignment from source. Read more
impl Debug for EdgeDirection[src]
impl Debug for EdgeDirectionfn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl Hash for EdgeDirection[src]
impl Hash for EdgeDirectionfn hash<__H: Hasher>(&self, state: &mut __H)[src]
fn hash<__H: Hasher>(&self, state: &mut __H)Feeds this value into the given [Hasher]. Read more
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, 1.3.0[src]
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, 1.3.0
[src]Feeds a slice of this type into the given [Hasher]. Read more
impl Copy for EdgeDirection[src]
impl Copy for EdgeDirectionAuto Trait Implementations
impl Send for EdgeDirection
impl Send for EdgeDirectionimpl Sync for EdgeDirection
impl Sync for EdgeDirection