Trait lrs::ops::FnMut

Objects that implement the mutable function call operator.

Syntax

trait FnMut<Args> : FnOnce<Args> {
    /* Required methods */
    extern "rust-call" fn call_mut(&mut self, args: Args) -> <Self as FnOnce<Args>>::Output
}

Methods

ReceiverNameDescription
&mut selfcall_mut

The method that is called by the operator.