Trait ffi_helpers::Split[][src]

pub trait Split<Args, Ret> {
    type Trampoline;
    fn trampoline() -> Self::Trampoline;
}
Expand description

A helper trait used by split_closure() to get a trampoline function which will invoke the closure.

This trait is automatically implemented for any FnMut() callable, you shouldn’t implement it yourself.

Associated Types

Required methods

Implementors