#[non_exhaustive]pub struct InsertOneOptions {
pub bypass_document_validation: Option<bool>,
pub write_concern: Option<WriteConcern>,
}
Expand description
Specifies the options to a
Collection::insert_one
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.bypass_document_validation: Option<bool>
Opt out of document-level validation.
write_concern: Option<WriteConcern>
The write concern for the operation.
Implementations§
Source§impl InsertOneOptions
impl InsertOneOptions
Sourcepub fn builder() -> InsertOneOptionsBuilder<((), ())>
pub fn builder() -> InsertOneOptionsBuilder<((), ())>
Create a builder for building InsertOneOptions
.
On the builder, call .bypass_document_validation(...)
(optional), .write_concern(...)
(optional) to set the values of the fields (they accept Into
values).
Finally, call .build()
to create the instance of InsertOneOptions
.
Trait Implementations§
Source§impl Clone for InsertOneOptions
impl Clone for InsertOneOptions
Source§fn clone(&self) -> InsertOneOptions
fn clone(&self) -> InsertOneOptions
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 InsertOneOptions
impl Debug for InsertOneOptions
Source§impl Default for InsertOneOptions
impl Default for InsertOneOptions
Source§fn default() -> InsertOneOptions
fn default() -> InsertOneOptions
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for InsertOneOptions
impl<'de> Deserialize<'de> for InsertOneOptions
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<InsertOneOptions, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<InsertOneOptions, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for InsertOneOptions
impl RefUnwindSafe for InsertOneOptions
impl Send for InsertOneOptions
impl Sync for InsertOneOptions
impl Unpin for InsertOneOptions
impl UnwindSafe for InsertOneOptions
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