pub struct BulkLoadRequest<'a, S>{ /* private fields */ }
Expand description
A handler for a bulk insert data flow.
Implementations§
Source§impl<'a, S> BulkLoadRequest<'a, S>
impl<'a, S> BulkLoadRequest<'a, S>
Sourcepub async fn finalize(self) -> Result<ExecuteResult>
pub async fn finalize(self) -> Result<ExecuteResult>
Ends the bulk load, flushing all pending data to the wire.
This method must be called after sending all the data to flush all pending data and to get the server actually to store the rows to the table.
Trait Implementations§
Auto Trait Implementations§
impl<'a, S> Freeze for BulkLoadRequest<'a, S>
impl<'a, S> RefUnwindSafe for BulkLoadRequest<'a, S>where
S: RefUnwindSafe,
impl<'a, S> Send for BulkLoadRequest<'a, S>
impl<'a, S> Sync for BulkLoadRequest<'a, S>where
S: Sync,
impl<'a, S> Unpin for BulkLoadRequest<'a, S>
impl<'a, S> !UnwindSafe for BulkLoadRequest<'a, S>
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