Tedious Trait Implementations

If one trait is a superset of another trait, you can use blanket implementation. I had a case when I had 2 traits and I needed an umbrella trait that encompassed both traits. Blanket implementation made that easy.

See Storing elements in a Vec where each element implements multiple dyn Traits - #10 by qaopm and the discussion.