use super::MethodCall;
use tokio::time::Elapsed;
#[derive(Debug)]
pub enum Polling {
Fetching(MethodCall),
Timeout(Elapsed),
}
impl Polling {
#[must_use]
pub fn is_fetching(&self) -> bool {
match self {
Self::Fetching(..) => true,
_ => false,
}
}
#[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)
}
}