Struct arangors::aql::AqlOptions[][src]

pub struct AqlOptions { /* fields omitted */ }

Implementations

impl AqlOptions[src]

pub fn builder() -> AqlOptionsBuilder<((), (), (), (), (), (), (), (), ())>[src]

Create a builder for building AqlOptions. On the builder, call .fail_on_warning(...)(optional), .profile(...)(optional), .max_warning_count(...)(optional), .full_count(...)(optional), .max_plans(...)(optional), .optimizer(...)(optional), .intermediate_commit_count(...)(optional), .intermediate_commit_size(...)(optional), .max_transaction_size(...)(optional) to set the values of the fields. Finally, call .build() to create the instance of AqlOptions.

impl AqlOptions[src]

pub fn set_optimizer(&mut self, optimizer: String)[src]

Trait Implementations

impl Debug for AqlOptions[src]

impl Default for AqlOptions[src]

impl PartialEq<AqlOptions> for AqlOptions[src]

impl Serialize for AqlOptions[src]

impl StructuralPartialEq for AqlOptions[src]

Auto Trait Implementations

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.