[][src]Trait avocado::ops::Delete

pub trait Delete<T: Doc>: Debug {
    fn filter(&self) -> Document;

    fn options() -> WriteConcern { ... }
}

A deletion / removal operation.

Required methods

fn filter(&self) -> Document

Filter for restricting documents to delete.

Loading content...

Provided methods

fn options() -> WriteConcern

Writing options for this deletion operation.

Loading content...

Implementations on Foreign Types

impl<T: Doc, Q: Delete<T>, '_> Delete<T> for &'_ Q
[src]

Loading content...

Implementors

impl<T: Doc> Delete<T> for Document
[src]

Loading content...