pub trait PFn<Args>: PFnMut<Args> {
// Required method
fn pfn_call(&self, args: Args) -> Self::PFnOutput;
}Expand description
A trait implementing call as pfn_call.
pub trait PFn<Args>: PFnMut<Args> {
// Required method
fn pfn_call(&self, args: Args) -> Self::PFnOutput;
}A trait implementing call as pfn_call.