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
use std::{borrow::Borrow, fmt, ops::Deref, str::FromStr};

#[derive(Debug, Clone, Eq, PartialEq, Ord, PartialOrd)]
pub struct Email(String);

impl AsRef<String> for Email {
    fn as_ref(&self) -> &String {
        &self.0
    }
}

impl AsRef<str> for Email {
    fn as_ref(&self) -> &str {
        self.0.as_str()
    }
}

impl From<Email> for String {
    fn from(from: Email) -> Self {
        from.0
    }
}

impl From<String> for Email {
    fn from(from: String) -> Self {
        Self(from)
    }
}

impl From<&str> for Email {
    fn from(from: &str) -> Self {
        from.to_owned().into()
    }
}

impl FromStr for Email {
    type Err = ();
    fn from_str(s: &str) -> Result<Email, Self::Err> {
        Ok(s.into())
    }
}

impl Borrow<str> for Email {
    fn borrow(&self) -> &str {
        self.as_ref()
    }
}

impl Deref for Email {
    type Target = String;

    fn deref(&self) -> &String {
        self.as_ref()
    }
}

impl fmt::Display for Email {
    fn fmt(&self, f: &mut fmt::Formatter) -> Result<(), fmt::Error> {
        f.write_str(self.as_ref())
    }
}