socrates_rs 1.1.0

Validate and Extract information from National Identification Numbers.
Documentation
use strum_macros::EnumIter;
/**
List of ISO country codes: https://en.wikipedia.org/wiki/List_of_ISO_3166_country_codes
**/
#[derive(EnumIter)]
pub enum Code {
    AL,
    BA,
    BE,
    BG,
    BR,
    CA,
    DK,
    ES,
    FR,
    IT,
    LU,
    PT,
    US,
    DE,
    MX,
}