rust-dlopen
rust-dlopen copied to clipboard
add support for lifetimes in functions
This pr adds support for Iifetimes in functions.
Example:
#[derive(WrapperApi)]
struct Foo {
bar: for<'a> unsafe extern "C" fn(player: &'a str) -> &'a str,
}