pub trait PipelineVTable<V: VTable> {
// Required method
fn to_operator(array: &V::Array) -> VortexResult<Option<Rc<dyn Operator>>>;
}
Required Methods§
Sourcefn to_operator(array: &V::Array) -> VortexResult<Option<Rc<dyn Operator>>>
fn to_operator(array: &V::Array) -> VortexResult<Option<Rc<dyn Operator>>>
Convert the current array into a Operator
.
Returns None
if the array cannot be converted to an operator.
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.