It's similar to the spirit of SIMD. I have multiple structs that implement a trait, and I want to wrap instances of them in a composite struct, the latter of which implement the trait, too, by calling the methods on each member.
Is there a crate for this?
I know enum_dispatch
which generates methods automatically for an enum type. I expect the implementation of my idea to be similar to that, except that we are replacing enum (call on "any") with a struct (call on "every").