pub struct DataPipeSender { /* private fields */ }Expand description
Sender for streaming data to the HTTP transport.
This is used with the callback-based import to send data chunks.
Implementations§
Source§impl DataPipeSender
impl DataPipeSender
Sourcepub async fn send_row<I, T>(
&self,
row: I,
separator: char,
delimiter: char,
row_separator: &RowSeparator,
) -> Result<(), ImportError>
pub async fn send_row<I, T>( &self, row: I, separator: char, delimiter: char, row_separator: &RowSeparator, ) -> Result<(), ImportError>
Auto Trait Implementations§
impl Freeze for DataPipeSender
impl RefUnwindSafe for DataPipeSender
impl Send for DataPipeSender
impl Sync for DataPipeSender
impl Unpin for DataPipeSender
impl UnwindSafe for DataPipeSender
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