help wanted
仓库指标
- 星标
- (4,472 个星标)
- PR 合并指标
- (平均合并 8分钟) (30 天内合并 3 个 PR)
描述
#[cxx::bridge]
mod ffi {
extern "Rust" {
type Thing<'a>;
}
unsafe extern "C++" {
fn f(callback: for<'a> fn(&mut Thing<'a>, &mut Thing<'a>));
}
}
Currently rejected:
error: function pointer with lifetime parameters is not supported yet
--> src/main.rs:8:24
|
8 | fn f(callback: for<'a> fn(&mut Thing<'a>, &mut Thing<'a>));
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^