[−][src]Struct gremlin_client::process::traversal::TraversalBuilder
Methods
impl TraversalBuilder[src]
pub fn new(bytecode: Bytecode) -> Self[src]
pub fn bytecode(&self) -> &Bytecode[src]
pub fn v<T>(self, ids: T) -> TraversalBuilder where
T: Into<GIDs>, [src]
T: Into<GIDs>,
pub fn has_label<L>(self, labels: L) -> Self where
L: Into<Labels>, [src]
L: Into<Labels>,
pub fn add_v<A>(self, label: A) -> Self where
A: Into<Labels>, [src]
A: Into<Labels>,
pub fn property<A>(self, key: &str, value: A) -> Self where
A: Into<GValue>, [src]
A: Into<GValue>,
pub fn has<A>(self, step: A) -> Self where
A: IntoHasStep, [src]
A: IntoHasStep,
pub fn has_many<A>(self, steps: Vec<A>) -> Self where
A: IntoHasStep, [src]
A: IntoHasStep,
pub fn has_not<A>(self, key: A) -> Self where
A: Into<String>, [src]
A: Into<String>,
pub fn as_<A>(self, alias: A) -> Self where
A: Into<String>, [src]
A: Into<String>,
pub fn add_e<A>(self, label: A) -> Self where
A: Into<String>, [src]
A: Into<String>,
pub fn out<A>(self, labels: A) -> Self where
A: Into<Labels>, [src]
A: Into<Labels>,
pub fn out_e<A>(self, labels: A) -> Self where
A: Into<Labels>, [src]
A: Into<Labels>,
pub fn out_v(self) -> Self[src]
pub fn in_<A>(self, labels: A) -> Self where
A: Into<Labels>, [src]
A: Into<Labels>,
pub fn in_e<A>(self, labels: A) -> Self where
A: Into<Labels>, [src]
A: Into<Labels>,
pub fn in_v(self) -> Self[src]
pub fn label(self) -> Self[src]
pub fn from<A>(self, step: A) -> Self where
A: IntoFromStep, [src]
A: IntoFromStep,
pub fn to<A>(self, step: A) -> Self where
A: IntoToStep, [src]
A: IntoToStep,
pub fn properties<L>(self, labels: L) -> Self where
L: Into<Labels>, [src]
L: Into<Labels>,
pub fn property_map<L>(self, labels: L) -> Self where
L: Into<Labels>, [src]
L: Into<Labels>,
pub fn values<L>(self, labels: L) -> Self where
L: Into<Labels>, [src]
L: Into<Labels>,
pub fn value_map<L>(self, labels: L) -> Self where
L: Into<Labels>, [src]
L: Into<Labels>,
pub fn count(self) -> Self[src]
pub fn group_count(self, key: Option<String>) -> Self[src]
pub fn group(self, key: Option<String>) -> Self[src]
pub fn by<A>(self, step: A) -> Self where
A: IntoByStep, [src]
A: IntoByStep,
pub fn select<A>(self, step: A) -> Self where
A: IntoSelectStep, [src]
A: IntoSelectStep,
pub fn fold(self) -> Self[src]
pub fn unfold(self) -> Self[src]
pub fn path(self) -> Self[src]
pub fn limit<A>(self, limit: A) -> Self where
A: Into<LimitStep>, [src]
A: Into<LimitStep>,
pub fn dedup<A>(self, limit: A) -> Self where
A: Into<DedupStep>, [src]
A: Into<DedupStep>,
pub fn sum<A>(self, scope: A) -> Self where
A: Into<Scope>, [src]
A: Into<Scope>,
pub fn max<A>(self, scope: A) -> Self where
A: Into<Scope>, [src]
A: Into<Scope>,
pub fn mean<A>(self, scope: A) -> Self where
A: Into<Scope>, [src]
A: Into<Scope>,
pub fn min<A>(self, scope: A) -> Self where
A: Into<Scope>, [src]
A: Into<Scope>,
pub fn is<A>(self, val: A) -> Self where
A: IntoPredicate, [src]
A: IntoPredicate,
pub fn where_<A>(self, step: A) -> Self where
A: IntoWhereStep, [src]
A: IntoWhereStep,
pub fn not<A>(self, step: A) -> Self where
A: IntoNotStep, [src]
A: IntoNotStep,
pub fn order<A>(self, scope: A) -> Self where
A: Into<Scope>, [src]
A: Into<Scope>,
pub fn match_<A>(self, step: A) -> Self where
A: IntoMatchStep, [src]
A: IntoMatchStep,
pub fn drop(self) -> Self[src]
pub fn or<A>(self, step: A) -> Self where
A: IntoOrStep, [src]
A: IntoOrStep,
pub fn project<A>(self, step: A) -> Self where
A: IntoSelectStep, [src]
A: IntoSelectStep,
pub fn map<A>(self, step: A) -> Self where
A: IntoByStep, [src]
A: IntoByStep,
pub fn repeat<A>(self, step: A) -> Self where
A: IntoRepeatStep, [src]
A: IntoRepeatStep,
pub fn until<A>(self, step: A) -> Self where
A: IntoUntilStep, [src]
A: IntoUntilStep,
pub fn simple_path(self) -> Self[src]
pub fn sample(self, step: i32) -> Self[src]
pub fn loops<A>(self, step: A) -> Self where
A: Into<LoopsStep>, [src]
A: Into<LoopsStep>,
pub fn local<A>(self, step: A) -> Self where
A: IntoLocalStep, [src]
A: IntoLocalStep,
Trait Implementations
impl Clone for TraversalBuilder[src]
fn clone(&self) -> TraversalBuilder[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Default for TraversalBuilder[src]
impl IntoByStep for TraversalBuilder[src]
impl IntoFromStep for TraversalBuilder[src]
impl IntoLocalStep for TraversalBuilder[src]
impl IntoMatchStep for TraversalBuilder[src]
impl IntoNotStep for TraversalBuilder[src]
impl IntoOrStep for TraversalBuilder[src]
impl IntoRepeatStep for TraversalBuilder[src]
fn into_step(self) -> RepeatStep[src]
impl IntoSelectStep for TraversalBuilder[src]
fn into_step(self) -> SelectStep[src]
impl IntoToStep for TraversalBuilder[src]
impl IntoUntilStep for TraversalBuilder[src]
impl IntoWhereStep for TraversalBuilder[src]
Auto Trait Implementations
impl RefUnwindSafe for TraversalBuilder
impl Send for TraversalBuilder
impl Sync for TraversalBuilder
impl Unpin for TraversalBuilder
impl UnwindSafe for TraversalBuilder
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<T> Typeable for T where
T: Any,
T: Any,
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
V: MultiLane<T>,