Trait chiral_common::Operator
source · pub trait Operator {
type InputType;
type DataType;
type OutputType;
fn compute(
&self,
input: &Self::InputType,
data: &Self::DataType
) -> Self::OutputType;
}