pub enum GremlinStep {
Show 54 variants
V(Option<String>),
E(Option<String>),
Out(Option<String>),
In(Option<String>),
Both(Option<String>),
OutE(Option<String>),
InE(Option<String>),
BothE(Option<String>),
OutV,
InV,
BothV,
OtherV,
Has(String, Option<GremlinValue>),
HasNot(String),
HasLabel(String),
HasId(String),
Where(Box<GremlinTraversal>),
Filter(Box<GremlinTraversal>),
Dedup,
Limit(u64),
Skip(u64),
Range(u64, u64),
Values(Vec<String>),
ValueMap(Vec<String>),
Id,
Label,
Properties(Vec<String>),
Count,
Sum,
Min,
Max,
Mean,
Select(Vec<String>),
Project(Vec<String>),
Path,
SimplePath,
CyclicPath,
Repeat(Box<GremlinTraversal>),
Times(u32),
Until(Box<GremlinTraversal>),
Emit,
Union(Vec<GremlinTraversal>),
Choose(Box<GremlinTraversal>, Box<GremlinTraversal>, Option<Box<GremlinTraversal>>),
Coalesce(Vec<GremlinTraversal>),
As(String),
By(ByModifier),
Aggregate(String),
Store(String),
Group,
GroupCount,
ToList,
ToSet,
Next,
Fold,
}Expand description
A single step in a Gremlin traversal
Variants§
V(Option<String>)
E(Option<String>)
Out(Option<String>)
In(Option<String>)
Both(Option<String>)
OutE(Option<String>)
InE(Option<String>)
BothE(Option<String>)
OutV
InV
BothV
OtherV
Has(String, Option<GremlinValue>)
HasNot(String)
HasLabel(String)
HasId(String)
Where(Box<GremlinTraversal>)
Filter(Box<GremlinTraversal>)
Dedup
Limit(u64)
Skip(u64)
Range(u64, u64)
Values(Vec<String>)
ValueMap(Vec<String>)
Id
Label
Properties(Vec<String>)
Count
Sum
Min
Max
Mean
Select(Vec<String>)
Project(Vec<String>)
Path
SimplePath
CyclicPath
Repeat(Box<GremlinTraversal>)
Times(u32)
Until(Box<GremlinTraversal>)
Emit
Union(Vec<GremlinTraversal>)
Choose(Box<GremlinTraversal>, Box<GremlinTraversal>, Option<Box<GremlinTraversal>>)
Coalesce(Vec<GremlinTraversal>)
As(String)
By(ByModifier)
Aggregate(String)
Store(String)
Group
GroupCount
ToList
ToSet
Next
Fold
Trait Implementations§
Source§impl Clone for GremlinStep
impl Clone for GremlinStep
Source§fn clone(&self) -> GremlinStep
fn clone(&self) -> GremlinStep
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for GremlinStep
impl RefUnwindSafe for GremlinStep
impl Send for GremlinStep
impl Sync for GremlinStep
impl Unpin for GremlinStep
impl UnsafeUnpin for GremlinStep
impl UnwindSafe for GremlinStep
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<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
Source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T in a tonic::Request