pub trait CMapTo<Out> { // Required method fn c_map_to(self) -> Out; }
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".