pub trait TensorConjAPI {
type Output;
// Required method
fn conj_f(self) -> Result<Self::Output, Error>;
// Provided method
fn conj(self) -> Self::Output
where Self: Sized { ... }
}pub trait TensorConjAPI {
type Output;
// Required method
fn conj_f(self) -> Result<Self::Output, Error>;
// Provided method
fn conj(self) -> Self::Output
where Self: Sized { ... }
}