pub trait ForwardMut<Rhs> {
type Output;
// Required method
fn forward_mut(&mut self, input: &Rhs) -> Self::Output;
}Required Associated Types§
Required Methods§
Sourcefn forward_mut(&mut self, input: &Rhs) -> Self::Output
fn forward_mut(&mut self, input: &Rhs) -> Self::Output
a single forward step with mutable access