pub trait TraceOutput: Any + Debug + Display { // Required method fn as_any(&self) -> &dyn Any; }
A trace outputted by a generator
Upcast the value to &dyn Any. This will be removed when trait upcasting is stabilized.
&dyn Any