pub trait ViewTupleFlat { // Required method fn flatten(self) -> Vec<Box<dyn View>>; }
Adds the flatten function to turn a tuple of View’s into a Vec of View trait objects.
flatten