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
use std::borrow::Cow;
use std::fmt::{Display, Formatter};
#[derive(Clone, Debug, PartialEq, Eq, Hash)]
pub struct Region(
Cow<'static, str>,
);
impl AsRef<str> for Region {
fn as_ref(&self) -> &str {
&self.0
}
}
impl Display for Region {
fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
write!(f, "{}", self.0)
}
}
impl Region {
pub fn new(region: impl Into<Cow<'static, str>>) -> Self {
Self(region.into())
}
pub const fn from_static(region: &'static str) -> Self {
Self(Cow::Borrowed(region))
}
}
#[derive(Clone, Debug, PartialEq, Eq)]
pub struct SigningRegion(Cow<'static, str>);
impl AsRef<str> for SigningRegion {
fn as_ref(&self) -> &str {
&self.0
}
}
impl From<Region> for SigningRegion {
fn from(inp: Region) -> Self {
SigningRegion(inp.0)
}
}
impl From<&'static str> for SigningRegion {
fn from(region: &'static str) -> Self {
Self::from_static(region)
}
}
impl SigningRegion {
pub const fn from_static(region: &'static str) -> Self {
SigningRegion(Cow::Borrowed(region))
}
}