pub trait TryFromArrayRef: Sized {
// Required method
fn try_from_array(array: ArrayRef) -> Result<Self, ArrayRef>;
}
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) -> Result<Self, ArrayRef>
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.