pub trait ColumnWrapper {
type Wrapper;
// Required methods
fn wrap<T: ColumnData + Send + Sync + 'static>(column: T) -> Self::Wrapper;
fn wrap_arc(data: Arc<dyn ColumnData + Send + Sync>) -> Self::Wrapper;
}Required Associated Types§
Required Methods§
fn wrap<T: ColumnData + Send + Sync + 'static>(column: T) -> Self::Wrapper
fn wrap_arc(data: Arc<dyn ColumnData + Send + Sync>) -> Self::Wrapper
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.