pub trait UpdateSource: Send + 'static {
// Required method
fn poll<'a>(
&'a mut self,
) -> Pin<Box<dyn Future<Output = Result<Vec<Update>>> + Send + 'a>>;
}Expand description
Pluggable update input source used by BotEngine.
pub trait UpdateSource: Send + 'static {
// Required method
fn poll<'a>(
&'a mut self,
) -> Pin<Box<dyn Future<Output = Result<Vec<Update>>> + Send + 'a>>;
}Pluggable update input source used by BotEngine.