1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
pub mod country;
mod validator;

pub struct Citizen {
    pub gender: char,
    pub year_of_birth: i32,
    pub month_of_birth: Option<u8>,
    pub day_of_birth: Option<u8>,
    pub place_of_birth: Option<String>,
}

pub fn validate_id(id: &str, country: country::Code) -> bool {
    let country_validator = validator::get_validator(country);
    return country_validator.validate_id(id);
}

pub fn extract_information(id: &str, country: country::Code) -> Option<Citizen> {
    let country_validator = validator::get_validator(country);
    return country_validator.extract_citizen(id);
}