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
use std::fmt;
use std::str::FromStr;

use crate::error::ParseError;

/// Represents the parts of advent of code challenges.
pub enum Part {
    One,
    Two,
}

impl fmt::Display for Part {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        match self {
            Part::One => write!(f, "part 1"),
            Part::Two => write!(f, "part 2"),
        }
    }
}

impl FromStr for Part {
    type Err = ParseError;

    fn from_str(s: &str) -> Result<Self, Self::Err> {
        match s {
            "part1" | "part 1" | "Part 1" | "Part1" => Ok(Part::One),
            "part2" | "part 2" | "Part 2" | "Part2" => Ok(Part::Two),
            _ => Err(ParseError(format!("Invalid part: {}", s))),
        }
    }
}