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