Trait std::ops::Fn[src]
pub trait Fn<Args, Result> {
fn call<Args, Result>(&self, args: Args) -> Result;
}A version of the call operator that takes an immutable receiver.
Required Methods
fn call<Args, Result>(&self, args: Args) -> Result
This is called when the call operator is used.