pub enum EdgeDirection {
Outbound,
Inbound,
}
Expand description
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. EdgeDirection
s are used to specify which
end of things you want to pipe - either the outbound items or the inbound
items.
Variants§
Trait Implementations§
Source§impl Clone for EdgeDirection
impl Clone for EdgeDirection
Source§fn clone(&self) -> EdgeDirection
fn clone(&self) -> EdgeDirection
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for EdgeDirection
impl Debug for EdgeDirection
Source§impl From<EdgeDirection> for String
impl From<EdgeDirection> for String
Source§fn from(d: EdgeDirection) -> Self
fn from(d: EdgeDirection) -> Self
Converts to this type from the input type.
Source§impl FromStr for EdgeDirection
impl FromStr for EdgeDirection
Source§impl Hash for EdgeDirection
impl Hash for EdgeDirection
Source§impl PartialEq for EdgeDirection
impl PartialEq for EdgeDirection
impl Copy for EdgeDirection
impl Eq for EdgeDirection
impl StructuralPartialEq for EdgeDirection
Auto Trait Implementations§
impl Freeze for EdgeDirection
impl RefUnwindSafe for EdgeDirection
impl Send for EdgeDirection
impl Sync for EdgeDirection
impl Unpin for EdgeDirection
impl UnwindSafe for EdgeDirection
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.