Trait stabby::closure::Call3

source ·
pub trait Call3<O, I0, I1, I2>: CallMut3<O, I0, I1, I2> {
    // Required method
    extern "C" fn call(&self, _0: I0, _1: I1, _2: I2) -> O;
}
Expand description

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

Required Methods§

source

extern "C" fn call(&self, _0: I0, _1: I1, _2: I2) -> O

Call the function

Trait Implementations§

source§

impl<'stabby_vt_lt, O, I0, I1, I2> CompoundVt for dyn Call3<O, I0, I1, I2>

§

type Vt<StabbyNextVtable> = VTable<StabbyVtableCall3<O, I0, I1, I2>, StabbyNextVtable>

An stabby-generated item for Call3

Implementors§

source§

impl<O, I0, I1, I2, F> Call3<O, I0, I1, I2> for F
where F: Fn(I0, I1, I2) -> O,