[][src]Struct couchbase::QueryOptions

pub struct QueryOptions { /* fields omitted */ }

Implementations

impl QueryOptions[src]

pub fn timeout(self, timeout: Duration) -> Self[src]

pub fn scan_consistency(self, scan_consistency: QueryScanConsistency) -> Self[src]

pub fn adhoc(self, adhoc: bool) -> Self[src]

pub fn client_context_id(self, client_context_id: String) -> Self[src]

pub fn max_parallelism(self, max_parallelism: u32) -> Self[src]

pub fn pipeline_batch(self, pipeline_batch: u32) -> Self[src]

pub fn pipeline_cap(self, pipeline_cap: u32) -> Self[src]

pub fn scan_cap(self, scan_cap: u32) -> Self[src]

pub fn scan_wait(self, scan_wait: Duration) -> Self[src]

pub fn readonly(self, readonly: bool) -> Self[src]

pub fn metrics(self, metrics: bool) -> Self[src]

pub fn profile(self, profile: QueryProfile) -> Self[src]

pub fn consistent_with(self, consistent_with: MutationState) -> Self[src]

pub fn positional_parameters<T>(self, positional_parameters: T) -> Self where
    T: Serialize
[src]

pub fn named_parameters<T>(self, named_parameters: T) -> Self where
    T: Serialize
[src]

pub fn raw<T>(self, raw: T) -> Self where
    T: Serialize
[src]

Trait Implementations

impl Debug for QueryOptions[src]

impl Default for QueryOptions[src]

impl Serialize for QueryOptions[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, 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.

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