Objects that implement the immutable function call operator.
trait Fn<Args> : FnMut<Args> {
/* Required methods */
extern "rust-call" fn call(&self, args: Args) -> <Self as FnOnce<Args>>::Output
}| Receiver | Name | Description |
|---|---|---|
&self | call | The method that is called by the operator. |