[][src]Struct couchbase::AnalyticsOptions

pub struct AnalyticsOptions { /* fields omitted */ }

Implementations

impl AnalyticsOptions[src]

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

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

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

pub fn readonly(self, readonly: bool) -> 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 priority(self, priority: bool) -> Self[src]

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

Trait Implementations

impl Debug for AnalyticsOptions[src]

impl Default for AnalyticsOptions[src]

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