pub trait Operator {
    type InputType;
    type DataType;
    type OutputType;

    fn compute(
        &self,
        input: &Self::InputType,
        data: &Self::DataType
    ) -> Self::OutputType; }

Required Associated Types§

Required Methods§

Implementors§