Struct mongodb::coll::options::AggregateOptions[][src]

pub struct AggregateOptions {
    pub allow_disk_use: Option<bool>,
    pub use_cursor: Option<bool>,
    pub batch_size: i32,
    pub max_time_ms: Option<i64>,
    pub read_preference: Option<ReadPreference>,
}

Options for aggregation queries.

Fields

Methods

impl AggregateOptions
[src]

Trait Implementations

impl Clone for AggregateOptions
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for AggregateOptions
[src]

Formats the value using the given formatter. Read more

impl Default for AggregateOptions
[src]

Returns the "default value" for a type. Read more

impl From<AggregateOptions> for Document
[src]

Performs the conversion.

Auto Trait Implementations