pub trait StatusObserver {
    // Required method
    fn record<Output: AsStatusLabel>(&self, output: &Output);
}

Required Methods§

source

fn record<Output: AsStatusLabel>(&self, output: &Output)

Object Safety§

This trait is not object safe.

Implementors§