Trait TraceOutput

Source
pub trait TraceOutput:
    Any
    + Debug
    + Display {
    // Required method
    fn as_any(&self) -> &dyn Any;
}
Expand description

A trace outputted by a generator

Required Methods§

Source

fn as_any(&self) -> &dyn Any

Upcast the value to &dyn Any. This will be removed when trait upcasting is stabilized.

Implementors§