Struct arangors::aql::AqlQuery[][src]

pub struct AqlQuery<'a> { /* fields omitted */ }

Implementations

impl<'a> AqlQuery<'a>[src]

pub fn builder() -> AqlQueryBuilder<'a, ((), (), (), (), (), (), (), ())>[src]

Create a builder for building AqlQuery.

On the builder, call .query(...), .bind_vars(...)(optional), .bind_var(...)(optional), .try_bind(...)(optional), .count(...)(optional), .batch_size(...)(optional), .cache(...)(optional), .memory_limit(...)(optional), .ttl(...)(optional), .options(...)(optional) to set the values of the fields (they accept Into values).

Use .try_bind(...) to accept any serializable struct while .bind_value(...) accepts an Into<serde_json::Value>.

Finally, call .build() to create the instance of AqlQuery.

Trait Implementations

impl<'a> Debug for AqlQuery<'a>[src]

impl<'a> Serialize for AqlQuery<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for AqlQuery<'a>

impl<'a> Send for AqlQuery<'a>

impl<'a> Sync for AqlQuery<'a>

impl<'a> Unpin for AqlQuery<'a>

impl<'a> UnwindSafe for AqlQuery<'a>

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> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

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.