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

pub struct InsertManyOptions {
    pub ordered: Option<bool>,
    pub write_concern: Option<WriteConcern>,
}

Options for insertMany operations.

Fields

Methods

impl InsertManyOptions
[src]

Trait Implementations

impl Clone for InsertManyOptions
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for InsertManyOptions
[src]

Formats the value using the given formatter. Read more

impl Default for InsertManyOptions
[src]

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

impl From<InsertManyOptions> for Document
[src]

Performs the conversion.

Auto Trait Implementations