pub trait ThreeDigit {
// Required methods
fn is_valid_three_digits(self) -> bool;
fn string_repr(self) -> String;
}
pub trait ThreeDigit {
// Required methods
fn is_valid_three_digits(self) -> bool;
fn string_repr(self) -> String;
}