#[non_exhaustive]pub struct DeleteOptions {
pub collation: Option<Collation>,
pub write_concern: Option<WriteConcern>,
pub hint: Option<Hint>,
}
Expand description
Specifies the options to a
Collection::delete_one
or
Collection::delete_many
operation.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.collation: Option<Collation>
The collation to use for the operation.
See the documentation for more information on how to use this option.
write_concern: Option<WriteConcern>
The write concern for the operation.
hint: Option<Hint>
The index to use for the operation. Only available in MongoDB 4.4+.
Implementations§
Source§impl DeleteOptions
impl DeleteOptions
Sourcepub fn builder() -> DeleteOptionsBuilder<((), (), ())>
pub fn builder() -> DeleteOptionsBuilder<((), (), ())>
Create a builder for building DeleteOptions
.
On the builder, call .collation(...)
(optional), .write_concern(...)
(optional), .hint(...)
(optional) to set the values of the fields (they accept Into
values).
Finally, call .build()
to create the instance of DeleteOptions
.
Trait Implementations§
Source§impl Clone for DeleteOptions
impl Clone for DeleteOptions
Source§fn clone(&self) -> DeleteOptions
fn clone(&self) -> DeleteOptions
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 moreSource§impl Debug for DeleteOptions
impl Debug for DeleteOptions
Source§impl Default for DeleteOptions
impl Default for DeleteOptions
Source§fn default() -> DeleteOptions
fn default() -> DeleteOptions
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DeleteOptions
impl<'de> Deserialize<'de> for DeleteOptions
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<DeleteOptions, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<DeleteOptions, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for DeleteOptions
impl Serialize for DeleteOptions
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations§
impl Freeze for DeleteOptions
impl RefUnwindSafe for DeleteOptions
impl Send for DeleteOptions
impl Sync for DeleteOptions
impl Unpin for DeleteOptions
impl UnwindSafe for DeleteOptions
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