[][src]Trait serde_closure::traits::FnMut

pub trait FnMut<Args>: FnOnce<Args> {
    fn call_mut(&mut self, args: Args) -> Self::Output;
}

Supertrait of std::ops::FnMut that is usable on stable Rust. It is implemented by closures created by the FnMut macro.

See the readme for examples.

Required methods

fn call_mut(&mut self, args: Args) -> Self::Output

Performs the call operation.

Loading content...

Implementors

impl<T, Args> FnMut<Args> for T where
    T: FnMut<Args>, 
[src]

Loading content...