NotifierExt

Trait NotifierExt 

Source
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

Provided Methods§

Source

fn call(&self, command: &Command)

Source

fn start(&self, name: &str)

Source

fn complete(&self, name: &str)

Source

fn error(&self, errors: &[RuntimeError])

Source

fn dependency(&self, parent: &str, name: &str)

Source

fn block_on(&self, parent: &str, name: &str)

Implementors§