1#[cxx::bridge] 2mod ffi { 3 unsafe extern "C++" { 4 type Logger; 5 6 fn logger<'static>() -> Pin<&'static Logger>; 7 } 8} 9 10fn main() {} 11