pub trait PassFailErrorExt {
// Required method
fn record_outcome(self, gauge: &IntGaugeVec) -> Self;
}Required Methods§
fn record_outcome(self, gauge: &IntGaugeVec) -> Self
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.
Implementors§
impl<T: AsPassFailError> PassFailErrorExt for T
Record outcome to a gauge with the “outcome” label as first label.