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