pub struct AddDocumentsRequest {
pub documents: Vec<Document>,
}Expand description
Request to add documents to a collection.
Fields§
§documents: Vec<Document>Documents to add.
Trait Implementations§
Source§impl Clone for AddDocumentsRequest
impl Clone for AddDocumentsRequest
Source§fn clone(&self) -> AddDocumentsRequest
fn clone(&self) -> AddDocumentsRequest
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 AddDocumentsRequest
impl Debug for AddDocumentsRequest
Auto Trait Implementations§
impl Freeze for AddDocumentsRequest
impl RefUnwindSafe for AddDocumentsRequest
impl Send for AddDocumentsRequest
impl Sync for AddDocumentsRequest
impl Unpin for AddDocumentsRequest
impl UnsafeUnpin for AddDocumentsRequest
impl UnwindSafe for AddDocumentsRequest
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