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
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".