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