you can't *not* forward it. 
- `dyn Format` automatically impls `Format`
- `&dyn Format` automatically impls `Format` via the `&T` blanket impl
- Removing `?Sized` in the `&T` blanket impl (what you did in your playground) is not viable.