[][src]Struct gremlin_client::process::traversal::GraphTraversalSource

pub struct GraphTraversalSource<A: Terminator<GValue>> { /* fields omitted */ }

Methods

impl<A: Terminator<GValue>> GraphTraversalSource<A>[src]

pub fn new(terminator: A) -> GraphTraversalSource<A>[src]

pub fn empty() -> GraphTraversalSource<MockTerminator>[src]

pub fn with_remote(
    &self,
    client: GremlinClient
) -> GraphTraversalSource<SyncTerminator>
[src]

pub fn v<T>(&self, ids: T) -> GraphTraversal<Vertex, Vertex, A> where
    T: Into<GIDs>,
    A: Terminator<Vertex>, 
[src]

pub fn add_v<T>(&self, label: T) -> GraphTraversal<Vertex, Vertex, A> where
    T: Into<Labels>,
    A: Terminator<Vertex>, 
[src]

pub fn add_e<T>(&self, label: T) -> GraphTraversal<Edge, Edge, A> where
    T: Into<String>,
    A: Terminator<Edge>, 
[src]

pub fn e<T>(&self, ids: T) -> GraphTraversal<Edge, Edge, A> where
    T: Into<GIDs>,
    A: Terminator<Edge>, 
[src]

pub fn with_side_effect<T>(
    &self,
    step: (&'static str, T)
) -> GraphTraversal<GValue, GValue, A> where
    T: Into<GValue> + FromGValue,
    A: Terminator<T>, 
[src]

Trait Implementations

impl<A: Clone + Terminator<GValue>> Clone for GraphTraversalSource<A>[src]

Auto Trait Implementations

impl<A> RefUnwindSafe for GraphTraversalSource<A> where
    A: RefUnwindSafe

impl<A> Send for GraphTraversalSource<A> where
    A: Send

impl<A> Sync for GraphTraversalSource<A> where
    A: Sync

impl<A> Unpin for GraphTraversalSource<A> where
    A: Unpin

impl<A> UnwindSafe for GraphTraversalSource<A> where
    A: UnwindSafe

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<T> Typeable for T where
    T: Any

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