Skip to main content

Watcher

Trait Watcher 

Source
pub trait Watcher: Send {
    // Required method
    fn saw(&mut self, step: Step);
}
Expand description

Somewhere to send a run’s steps while it is still running.

Required Methods§

Source

fn saw(&mut self, step: Step)

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§