1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
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)
    }
}