Trait stabby::closure::CallMut1

source ·
pub trait CallMut1<O, I0> {
    // Required method
    extern "C" fn call_mut(&mut self, _0: I0) -> O;
}
Expand description

core::ops::FnMut, but ABI-stable

Required Methods§

source

extern "C" fn call_mut(&mut self, _0: I0) -> O

Call the function

Trait Implementations§

source§

impl<'stabby_vt_lt, O, I0> CompoundVt for dyn CallMut1<O, I0>

§

type Vt<StabbyNextVtable> = VTable<StabbyVtableCallMut1<O, I0>, StabbyNextVtable>

An stabby-generated item for CallMut1

Implementors§

source§

impl<O, I0, F> CallMut1<O, I0> for F
where F: FnMut(I0) -> O,