pub trait Forward<Rhs> { type Output; // Required method fn forward(&self, input: &Rhs) -> Result<Self::Output>; }
This trait defines the forward pass of the network