1#[derive(Debug, Clone)] 2pub struct Year(pub u16); 3 4impl Year { 5 pub fn as_string(&self) -> String { 6 self.0.to_string() 7 } 8}