pub trait TryFromArrowType<T>: Sized {
// Required method
fn try_from_arrow(value: T) -> VortexResult<Self>;
}Expand description
Trait for converting Vortex types to Arrow types.
Required Methods§
Sourcefn try_from_arrow(value: T) -> VortexResult<Self>
fn try_from_arrow(value: T) -> VortexResult<Self>
Convert the Arrow type to a Vortex type.
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.