I have a set of types that implements a given trait, I want to get a concrete type object from a string name, strangely it works when my match returns Box<dy
In rust, you can automatically implement a trait for any type that implements some other combination of traits. Ie: impl<T: Foo + Bar> SomeTrait for T {