Example code for #[cxx::bridge]: struct MyType;=> type MyType;

This commit is contained in:
kud1ing 2023-01-27 19:40:48 +01:00 committed by GitHub
parent f33abb9ca8
commit 9e7a622ca9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -91,7 +91,7 @@ statement.
#[cxx::bridge]
mod ffi {
extern "Rust" {
struct MyType;
type MyType;
fn f() -> Box<MyType>;
}
}