Struct libffi::high::arity2::ClosureMut2
[−]
[src]
pub struct ClosureMut2<'a, A, B, R> { /* fields omitted */ }
A mutable, typed closure with the given argument and result types.
Methods
impl<'a, A: CType, B: CType, R: CType> ClosureMut2<'a, A, B, R>
[src]
pub fn new<Callback>(callback: &'a mut Callback) -> Self where
Callback: FnMut(A, B) -> R + 'a,
[src]
Callback: FnMut(A, B) -> R + 'a,
Constructs a typed closure callable from C from a Rust closure.
impl<'a, A, B, R> ClosureMut2<'a, A, B, R>
[src]
pub fn code_ptr(&self) -> &extern "C" fn(_: A, _: B) -> R
[src]
Gets the C code pointer that is used to invoke the closure.
pub fn from_parts<U>(
cif: Cif2<A, B, R>,
callback: CallbackMut2<U, A, B, R>,
userdata: &'a mut U
) -> Self
[src]
cif: Cif2<A, B, R>,
callback: CallbackMut2<U, A, B, R>,
userdata: &'a mut U
) -> Self
Constructs a typed closure callable from C from a CIF describing the calling convention for the resulting function, a callback for the function to call, and userdata to pass to the callback.
impl<'a, A: Copy, B: Copy, R> ClosureMut2<'a, A, B, R>
[src]
pub fn new_with_cif<Callback>(
cif: Cif2<A, B, R>,
callback: &'a mut Callback
) -> Self where
Callback: FnMut(A, B) -> R + 'a,
[src]
cif: Cif2<A, B, R>,
callback: &'a mut Callback
) -> Self where
Callback: FnMut(A, B) -> R + 'a,
Constructs a typed closure callable from C from a CIF describing the calling convention for the resulting function and the Rust closure to call.