Struct libffi::high::arity1::ClosureMut1 [] [src]

pub struct ClosureMut1<'a, A, R> { /* fields omitted */ }

A mutable, typed closure with the given argument and result types.

Methods

impl<'a, A: CType, R: CType> ClosureMut1<'a, A, R>
[src]

Constructs a typed closure callable from C from a Rust closure.

impl<'a, A, R> ClosureMut1<'a, A, R>
[src]

Gets the C code pointer that is used to invoke the closure.

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, R> ClosureMut1<'a, A, R>
[src]

Constructs a typed closure callable from C from a CIF describing the calling convention for the resulting function and the Rust closure to call.