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;

/// Reperesents possible errors that may happen during preparation of the
/// polling event loop.
#[derive(Debug)]
pub enum PollingSetup {
    /// Calling `DeleteWebhook` resulted in an error.
    DeleteWebhook(MethodCall),
    /// Calling `DeleteWebhook` timed out.
    DeleteWebhookTimeout(Elapsed),
}

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

    /// Checks if `self` is `DeleteWebhookTimeout`.
    #[must_use]
    pub fn is_delete_webhook_timeout(&self) -> bool {
        match self {
            Self::DeleteWebhookTimeout(..) => true,
            _ => false,
        }
    }
}
impl From<MethodCall> for PollingSetup {
    #[must_use]
    fn from(error: MethodCall) -> Self {
        Self::DeleteWebhook(error)
    }
}

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