pub trait TryFromArrayRef: Sized {
// Required method
fn try_from_array(array: ArrayRef) -> VortexResult<Self>;
}
Expand description
Trait for converting a type from a Vortex ArrayRef
, returning an error if the conversion fails.
Required Methods§
fn try_from_array(array: ArrayRef) -> VortexResult<Self>
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.