1use std::marker::PhantomPinned; 2 3#[cxx::bridge] 4mod ffi { 5 extern "Rust" { 6 type Pinned; 7 } 8} 9 10pub struct Pinned { 11 _pinned: PhantomPinned, 12} 13 14fn main() {} 15