Struct mongodb::coll::results::BulkDeleteResult [] [src]

pub struct BulkDeleteResult {
    pub acknowledged: bool,
    pub deleted_count: i32,
    pub write_exception: Option<BulkWriteException>,
}

Results for a bulk delete operation.

Fields

acknowledged: bool deleted_count: i32 write_exception: Option<BulkWriteException>

Methods

impl BulkDeleteResult
[src]

fn new(doc: Document, exception: Option<BulkWriteException>) -> BulkDeleteResult

Extracts server reply information into a result.

Trait Implementations

impl Clone for BulkDeleteResult
[src]

fn clone(&self) -> BulkDeleteResult

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)
1.0.0

Performs copy-assignment from source. Read more