pub trait NotifierExt: Notifier {
// Provided methods
fn call(&self, command: &Command) { ... }
fn start(&self, name: &str) { ... }
fn complete(&self, name: &str) { ... }
fn error(&self, errors: &[RuntimeError]) { ... }
fn dependency(&self, parent: &str, name: &str) { ... }
fn block_on(&self, parent: &str, name: &str) { ... }
}Expand description
Convenience trait for using Notifier