pub trait Diagnostics {
// Required method
fn record_skip(&mut self, report: SkipReport);
}Expand description
Side channel for non-fatal events emitted during clustering.
face-cli wires this to stderr printing plus the envelope’s
result.skipped counter; libraries embed their own sink.
Required Methods§
Sourcefn record_skip(&mut self, report: SkipReport)
fn record_skip(&mut self, report: SkipReport)
Record one SkipReport. Implementations decide whether to
print, count, accumulate, or drop it.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".