pub trait CanTryCompute<Code, Input>: HasErrorType {
type Output;
// Required method
fn try_compute(
&self,
_code: PhantomData<Code>,
input: Input,
) -> Result<Self::Output, Self::Error>;
}pub trait CanTryCompute<Code, Input>: HasErrorType {
type Output;
// Required method
fn try_compute(
&self,
_code: PhantomData<Code>,
input: Input,
) -> Result<Self::Output, Self::Error>;
}