Trait std::ops::FnMutStable [-] [+] [src]

pub trait FnMut<Args> where <Self as FnMut<Args>>::Output: Sized {
    type Output;

    extern "rust-call" fn call_mut(&mut self, args: Args) -> <Self as FnMut<Args>>::Output;
}

A version of the call operator that takes a mutable receiver.

Associated Types

type Output

Required Methods

extern "rust-call" fn call_mut(&mut self, args: Args) -> <Self as FnMut<Args>>::Output

This is called when the call operator is used.

Implementors