Trait TryFromArray

Source
pub trait TryFromArray: Sized {
    // Required method
    fn try_from_array(array: &dyn Array) -> VortexResult<Self>;
}
Expand description

Trait for converting a type from a Vortex ArrayRef, returning an error if the conversion fails.

Required Methods§

Source

fn try_from_array(array: &dyn Array) -> 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.

Implementors§