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