Trait stabby::closure::CallMut0

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

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

Required Methods§

source

extern "C" fn call_mut(&mut self) -> O

Call the function

Trait Implementations§

source§

impl<'stabby_vt_lt, O> CompoundVt for dyn CallMut0<O>

§

type Vt<StabbyNextVtable> = VTable<StabbyVtableCallMut0<O>, StabbyNextVtable>

An stabby-generated item for CallMut0

Implementors§

source§

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