15 lines
172 B
Rust
15 lines
172 B
Rust
use std::marker::PhantomPinned;
|
|
|
|
#[cxx::bridge]
|
|
mod ffi {
|
|
extern "Rust" {
|
|
type Pinned;
|
|
}
|
|
}
|
|
|
|
pub struct Pinned {
|
|
_pinned: PhantomPinned,
|
|
}
|
|
|
|
fn main() {}
|