pub trait NewTelegramFuture<T> {
    fn new(inner: Box<dyn Future<Item = T, Error = Error>>) -> Self;
}

Required Methods§

Implementors§