pub trait FnMutOneArg<Arg> {
type FnOutput;
// Required method
fn call_mut_with_one_arg(&mut self, arg: Arg) -> Self::FnOutput;
}Required Associated Types§
Required Methods§
fn call_mut_with_one_arg(&mut self, arg: Arg) -> Self::FnOutput
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".