pub trait TraceSink: Send + Sync {
// Required method
fn record(&self, case_index: u64, trace: &[TraceEntry]);
}Expand description
Receives per-case traces when enabled.
Required Methods§
Sourcefn record(&self, case_index: u64, trace: &[TraceEntry])
fn record(&self, case_index: u64, trace: &[TraceEntry])
Records a full trace for a single generated case.