pub trait IntoElementPoller: Debug {
// Required method
fn start(&self) -> Box<dyn ElementPoller + Send + Sync>;
}
Expand description
Trait for returning a struct that implements ElementPoller.
The start() method will be called at the beginning of the polling loop.