pub trait IntoDyn<DynType> { // Required method fn into_dyn(self) -> DynType where Self: Sized + 'static; }