pub struct DeleteDocumentsParams {
pub collection_name: String,
pub filter_by: String,
pub batch_size: Option<i32>,
pub ignore_not_found: Option<bool>,
}
Expand description
struct for passing parameters to the method [delete_documents
]
Fields§
§collection_name: String
The name of the collection to delete documents from
filter_by: String
§batch_size: Option<i32>
§ignore_not_found: Option<bool>
Trait Implementations§
Source§impl Clone for DeleteDocumentsParams
impl Clone for DeleteDocumentsParams
Source§fn clone(&self) -> DeleteDocumentsParams
fn clone(&self) -> DeleteDocumentsParams
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl Freeze for DeleteDocumentsParams
impl RefUnwindSafe for DeleteDocumentsParams
impl Send for DeleteDocumentsParams
impl Sync for DeleteDocumentsParams
impl Unpin for DeleteDocumentsParams
impl UnwindSafe for DeleteDocumentsParams
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more