2
我想創建並返回一個C++結構。當我嘗試編譯時,我目前收到cannot move out of dereference of raw pointer
錯誤。任何想法我如何能做到這一點?如何從Rust FFI創建並返回C++結構?
#![allow(non_snake_case)]
#![allow(unused_variables)]
extern crate octh;
// https://thefullsnack.com/en/string-ffi-rust.html
use std::ffi::CString;
#[no_mangle]
pub unsafe extern "C" fn Ghelloworld(
shl: *const octh::root::octave::dynamic_library,
relative: bool,
) -> *mut octh::root::octave_dld_function {
let name = CString::new("helloworld").unwrap();
let pname = name.as_ptr() as *const octh::root::std::string;
std::mem::forget(pname);
let doc = CString::new("Hello World Help String").unwrap();
let pdoc = doc.as_ptr() as *const octh::root::std::string;
std::mem::forget(pdoc);
return octh::root::octave_dld_function_create(Some(Fhelloworld), shl, pname, pdoc);
}
pub unsafe extern "C" fn Fhelloworld(
args: *const octh::root::octave_value_list,
nargout: ::std::os::raw::c_int,
) -> octh::root::octave_value_list {
let list: *mut octh::root::octave_value_list = ::std::ptr::null_mut();
octh::root::octave_value_list_new(list);
std::mem::forget(list);
return *list;
}
注意:C++ *也*具有C FFI,因此任何與C對應的C++類/ struct都可以從Rust中使用,就像它從C. –
Thanks @Shepmaster。現在編譯。它可能工作,但我的八度helloworld尚未,所以我不是100%肯定。 https://github.com/ctaggart/octh_examples/blob/master/src/lib.rs –
@CameronTaggart不知道,但你應該防止在所有功能上的名稱混搭。 'Fhelloworld'中不是'#[no_mangle]'嗎? –