我正在尝试使用FFI从C程序调用公共函数(位于Rust结构的impl块内)。调用常规pub fn
并不太麻烦,但是我试图从pub fn
的{{1}}块内部调用struct
,但找不到正确的语法公开/调用它。当然可以,对吗?
impl
#[repr(C)]
#[derive(Debug)]
pub struct MyStruct {
var: i32,
}
#[no_mangle]
pub extern "C" fn new() -> MyStruct {
MyStruct { var: 99 }
}
#[no_mangle]
impl MyStruct {
#[no_mangle]
pub extern "C" fn print_hellow(&self) {
println!("{}", self.var);
}
}
答案 0 :(得分:2)
否,这是不可能的。您将需要为每个要访问的方法编写填充程序功能:
#[no_mangle]
pub unsafe extern "C" fn my_struct_print_hellow(me: *const MyStruct) {
let me = &*me;
me.print_hellow();
}
另请参阅: