pub(super) trait ChanSender: Send {
// Required methods
async fn send(&mut self, chunk: DataChunk) -> Result<()>;
async fn close(self, error: Option<Arc<BatchError>>) -> Result<()>;
}
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.