pub trait CanCompute<Code, Input> {
type Output;
// Required method
fn compute(&self, _tag: PhantomData<Code>, input: Input) -> Self::Output;
}pub trait CanCompute<Code, Input> {
type Output;
// Required method
fn compute(&self, _tag: PhantomData<Code>, input: Input) -> Self::Output;
}