pub trait DynInto<To> { // Required method fn into_box(self: Box<Self>) -> To; }
An object-safe version of std::convert::Into.
std::convert::Into
Converts a boxed object into the target type.