pub trait AsTracer {
    // Required method
    fn as_tracer<'a>(&'a mut self) -> Box<dyn TracerTrait + 'a>;
}

Required Methods§

source

fn as_tracer<'a>(&'a mut self) -> Box<dyn TracerTrait + 'a>

Implementations on Foreign Types§

source§

impl AsTracer for ()

source§

fn as_tracer<'a>(&'a mut self) -> Box<dyn TracerTrait + 'a>

Implementors§