We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
i.e. function parameters with the type fn(...) -> ....
fn(...) -> ...
#[cxx::bridge] mod ffi { extern "Rust" { fn f(arg: u8, callback: fn(u8)); } } fn f(arg: u8, callback: fn(u8)) { callback(256 - arg); }