tbot 0.2.2

Make cool Telegram bots with Rust easily.
Documentation
use crate::{types::update, Bot};
use std::sync::Arc;

common! {
    /// The context for [`unhandled`] handlers.
    ///
    /// [`unhandled`]: ../event_loop/struct.EventLoop.html#method.unhandled
    struct Unhandled {
        /// The unhandled update.
        update: update::Kind,
    }
}

impl<C> Unhandled<C> {
    pub(crate) const fn new(bot: Arc<Bot<C>>, update: update::Kind) -> Self {
        Self { bot, update }
    }
}