pub trait ConfigReporter {
// Required method
fn report_status(&mut self, key: &str, new_val: String);
}
Expand description
Report status or notice to caller.
pub trait ConfigReporter {
// Required method
fn report_status(&mut self, key: &str, new_val: String);
}
Report status or notice to caller.