pub trait PFnOnce<Args> {
type PFnOutput;
// Required method
fn pfn_call_once(self, args: Args) -> Self::PFnOutput;
}Expand description
A trait implementing call_once as pfn_call_once.
pub trait PFnOnce<Args> {
type PFnOutput;
// Required method
fn pfn_call_once(self, args: Args) -> Self::PFnOutput;
}A trait implementing call_once as pfn_call_once.