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