pub trait TensorHypotAPI<TRB> {
type Output;
// Required method
fn hypot_f(self, b: TRB) -> Result<Self::Output, Error>;
// Provided method
fn hypot(self, b: TRB) -> Self::Output
where Self: Sized { ... }
}pub trait TensorHypotAPI<TRB> {
type Output;
// Required method
fn hypot_f(self, b: TRB) -> Result<Self::Output, Error>;
// Provided method
fn hypot(self, b: TRB) -> Self::Output
where Self: Sized { ... }
}