pub trait CloneBox {
    // Required method
    fn clone_box(&self) -> BoxedBatch;
}

Required Methods§

source

fn clone_box(&self) -> BoxedBatch

Returns a Boxed clone of the underlying Batch trait implementation.

Implementors§

source§

impl<T> CloneBox for Twhere T: 'static + Batch + Clone + Send + Sync,