pub trait FunctionExt<P> {
type Output;
// Required method
fn call_mut(&mut self, params: P) -> Self::Output;
}
Expand description
Trait implemented on Function
to mimic FnMut
.
pub trait FunctionExt<P> {
type Output;
// Required method
fn call_mut(&mut self, params: P) -> Self::Output;
}
Trait implemented on Function
to mimic FnMut
.