Celes

crate Docs Apache2 licensed Rust Version Maintenance Status: Passively-Maintained Build Status

Convenience crate for handling ISO 3166-1

If there are any countries missing then please let me know or submit a PR

The main struct is Country which provides the following properties

The Russian Federation is also called Russia or The United Kingdom of Great Britain and Northern Ireland is also called England, Great Britain, Northern Ireland, Scotland, and United Kingdom.

Each country can be instantiated by using a function with the country name in snake case

Usage

```rust use celes::Country;

fn main() { let gb = Country::theunitedkingdomofgreatbritainandnorthernireland(); println!("{}", gb);

 let usa = Country::the_united_states_of_america();
 println!("{}", usa);

} ```

Additionally, each country can be created from a string or its numeric code. Country provides multiple from methods to instantiate it from a string:

Country implements the std::str::FromStr trait that accepts any valid argument to the previously mentioned functions such as:

If you are uncertain which function to use, just use Country::from_str as it accepts any of the valid string values. Country::from_str is case-insensitive

From String Example

```rust use celes::Country; use std::str::FromStr;

fn main() { // All three of these are equivalent let usa1 = Country::fromstr("USA").unwrap(); let usa2 = Country::fromstr("US").unwrap(); let usa3 = Country::fromstr("America").unwrap();

 // All three of these are equivalent
 let gb_1 = Country::from_str("England").unwrap();
 let gb_2 = Country::from_str("gb").unwrap();
 let gb_3 = Country::from_str("Scotland").unwrap();

} ```

Documentation

License

Licensed under

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be licensed as above, without any additional terms or conditions.