Trait LikeFn

Source
pub trait LikeFn<A> {
    // Required method
    fn like(
        &self,
        array: A,
        pattern: &Array,
        options: LikeOptions,
    ) -> VortexResult<Option<Array>>;
}

Required Methods§

Source

fn like( &self, array: A, pattern: &Array, options: LikeOptions, ) -> VortexResult<Option<Array>>

Implementors§

Source§

impl<E> LikeFn<Array> for E
where E: LikeFn<E::Array> + Encoding, E::Array: TryFrom<Array, Error = VortexError>,