help wanted
倉庫指標
- 星標
- (4,472 顆星)
- PR 合併指標
- (PR 指標待抓取)
描述
i.e. function parameters with the type fn(...) -> ....
#[cxx::bridge]
mod ffi {
extern "Rust" {
fn f(arg: u8, callback: fn(u8));
}
}
fn f(arg: u8, callback: fn(u8)) {
callback(256 - arg);
}