cxx 0.5.10

Safe interop between Rust and C++
Documentation
#[cxx::bridge]
mod ffi {
    struct S {
        x: u8,
    }

    impl UniquePtrTarget for S {}
}

fn main() {}