pub trait Backward { type Output; // Required method fn backward(&self) -> Self::Output; }
Backward describes an object capable of backward propagation.