#[non_exhaustive]pub struct InsertOneResult {
pub inserted_id: Bson,
}
Expand description
The result of 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.inserted_id: Bson
The _id
field of the document inserted.
Trait Implementations§
Source§impl Debug for InsertOneResult
impl Debug for InsertOneResult
Source§impl Serialize for InsertOneResult
impl Serialize for InsertOneResult
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 InsertOneResult
impl RefUnwindSafe for InsertOneResult
impl Send for InsertOneResult
impl Sync for InsertOneResult
impl Unpin for InsertOneResult
impl UnwindSafe for InsertOneResult
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