Trait TryFromArrayRef

Source
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§

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.

Implementations on Foreign Types§

Source§

impl<A: Array + Clone + 'static> TryFromArrayRef for Arc<A>

Implementors§

Source§

impl<A: Array + Clone + 'static> TryFromArrayRef for A