Trait TakeFromFn

Source
pub trait TakeFromFn<A> {
    // Required method
    fn take_from(
        &self,
        indices: A,
        array: &dyn Array,
    ) -> VortexResult<Option<ArrayRef>>;
}

Required Methods§

Source

fn take_from( &self, indices: A, array: &dyn Array, ) -> VortexResult<Option<ArrayRef>>

Implementors§

Source§

impl<E> TakeFromFn<&dyn Array> for E
where E: for<'a> TakeFromFn<&'a E::Array> + Encoding,