#[non_exhaustive]pub struct InsertManyResult {
pub inserted_ids: HashMap<usize, Bson>,
}
Expand description
The result of a Collection::insert_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.inserted_ids: HashMap<usize, Bson>
The _id
field of the documents inserted.
Trait Implementations§
Source§impl Debug for InsertManyResult
impl Debug for InsertManyResult
Source§impl Serialize for InsertManyResult
impl Serialize for InsertManyResult
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 InsertManyResult
impl RefUnwindSafe for InsertManyResult
impl Send for InsertManyResult
impl Sync for InsertManyResult
impl Unpin for InsertManyResult
impl UnwindSafe for InsertManyResult
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