use std::fmt::{Display, Formatter};
#[derive(Debug, Copy, Clone, PartialEq, Eq, Hash)]
pub enum LoadingState {
Complete,
InProgress,
NotStarted,
Error,
}
impl Display for LoadingState {
fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
write!(f, "{:?}", self)
}
}