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