tbot 0.3.0

Make cool Telegram bots with Rust easily.
Documentation
use super::MethodCall;
use tokio::time::Elapsed;

/// Represent possible errors that may happen during the polling event loop.
#[derive(Debug)]
pub enum Polling {
    /// Calling `GetUpdates` resulted in an error.
    Fetching(MethodCall),
    /// Calling `GetUpdates` timed out.
    Timeout(Elapsed),
}

impl Polling {
    /// Checks if `self` is `Fetching`.
    #[must_use]
    pub fn is_fetching(&self) -> bool {
        match self {
            Self::Fetching(..) => true,
            _ => false,
        }
    }

    /// Checks if `self` is `Timeout`.
    #[must_use]
    pub fn is_timeout(&self) -> bool {
        match self {
            Self::Timeout(..) => true,
            _ => false,
        }
    }
}

impl From<MethodCall> for Polling {
    #[must_use]
    fn from(error: MethodCall) -> Self {
        Self::Fetching(error)
    }
}

impl From<Elapsed> for Polling {
    #[must_use]
    fn from(error: Elapsed) -> Self {
        Self::Timeout(error)
    }
}