miu 0.1.0

Data values commonly used in the game Marble It Up! & it's Ultra version.
Documentation
1
2
3
4
5
6
7
8
9
10
11
use thiserror::Error;

#[derive(Debug, Error)]
pub enum MIUError {
    #[error("No items in Results")]
    EmptyResults,
    #[error("Failed to parse the weekly data: {0:?}")]
    FailedToParseWeekly(serde_json::Error),
    #[error("Failed to parse the scorebucket in weekly data: {0:?}")]
    FailedToParseScorebucket(serde_json::Error),
}