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