pub trait Tanh { type Output; // Required methods fn tanh(&self) -> Self::Output; fn tanh_derivative(&self) -> Self::Output; }