pub trait ResultGenDidExt<T, E>where Result<T, E>: Context<T, E>,{ // Required method fn did(self, msg: &'static str) -> Result<T>; }
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".