pub trait ProfilingStep {
// Required methods
fn process(&mut self, events: &[(u64, ProfilingEvent)]);
fn name(&self) -> &str;
}Expand description
A step in the profiling pipeline.
Required Methods§
Sourcefn process(&mut self, events: &[(u64, ProfilingEvent)])
fn process(&mut self, events: &[(u64, ProfilingEvent)])
Process a batch of events.