Objects that implement the mutable function call operator.
trait FnMut<Args> : FnOnce<Args> {
/* Required methods */
extern "rust-call" fn call_mut(&mut self, args: Args) -> <Self as FnOnce<Args>>::Output
}| Receiver | Name | Description |
|---|---|---|
&mut self | call_mut | The method that is called by the operator. |