[][src]Trait serde_closure::traits::Fn

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

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

See the readme for examples.

Required methods

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

Performs the call operation.

Loading content...

Implementors

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

Loading content...