1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
#![cfg_attr(not(feature = "std"), no_std)]
pub extern crate alloc;
#[macro_export]
macro_rules! country_code {
(
length = $length:tt;
$( #[$meta:meta] )*
$pub:vis enum $name:ident {
$(
$( #[$variant_meta:meta] )*
$variant:ident,
)+
}
) => {
$(#[$meta])*
$pub enum $name {
$(
$( #[$variant_meta] )*
$variant,
)+
Other($crate::alloc::boxed::Box<str>),
}
impl $name {
pub const VARS: &'static [$name] = &[
$(
$name::$variant,
)+
];
}
impl ::core::str::FromStr for $name {
type Err = $crate::error::ParseError;
fn from_str(s: &str) -> Result<Self, Self::Err> {
match s {
$(
::core::stringify!($variant) => Ok(Self::$variant),
)+
s if s.len() == $length => Ok(Self::Other(s.into())),
s => Err($crate::error::ParseError::Invalid(s.into()))
}
}
}
impl ::core::fmt::Display for $name {
fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result {
match self {
$(
Self::$variant => ::core::write!(f, "{}", ::core::stringify!($variant)),
)+
Self::Other(s) => ::core::write!(f, "{}", s)
}
}
}
impl ::core::default::Default for $name {
fn default() -> Self {
Self::Other(Default::default())
}
}
impl ::core::cmp::PartialEq for $name {
fn eq(&self, other: &Self) -> bool {
$crate::alloc::format!("{}", self) == $crate::alloc::format!("{}", other)
}
}
impl ::core::cmp::Eq for $name {
}
impl_macros::impl_partial_eq_str_for_display! { str, $name }
impl_macros::impl_partial_eq_str_for_display! { &'a str, $name }
impl_macros::impl_partial_eq_str_for_display! { $crate::alloc::borrow::Cow<'a, str>, $name }
impl_macros::impl_partial_eq_str_for_display! { $crate::alloc::string::String, $name }
#[cfg(feature = "std")]
impl ::std::hash::Hash for $name {
fn hash<H: ::std::hash::Hasher>(&self, state: &mut H) {
$crate::alloc::format!("{}", self).hash(state);
}
}
#[cfg(feature = "serde")]
impl<'de> ::serde::Deserialize<'de> for $name {
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
where
D: ::serde::Deserializer<'de>,
{
use ::core::str::FromStr as _;
let s = $crate::alloc::boxed::Box::<str>::deserialize(deserializer)?;
Self::from_str(&s).map_err(::serde::de::Error::custom)
}
}
#[cfg(feature = "serde")]
impl ::serde::Serialize for $name {
fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
where
S: ::serde::Serializer,
{
use $crate::alloc::string::ToString as _;
self.to_string().serialize(serializer)
}
}
};
}
pub mod error;
pub mod iso3166_1;
pub mod iso3166_2;
pub use iso3166_1::alpha_2::CountryCode;
pub use iso3166_2::SubdivisionCode;