Trait lrs::ops::Fn

Objects that implement the immutable function call operator.

Syntax

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

Methods

ReceiverNameDescription
&selfcall

The method that is called by the operator.