pub trait IntoDyn<DynType> {
// Required method
fn into_dyn(self) -> DynType
where Self: Sized + 'static;
}Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".