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
use super::ID;
use crate::util::XString;
use std::{fmt, ops::Deref};

impl Deref for ID {
    type Target = str;

    fn deref(&self) -> &Self::Target {
        &self.id
    }
}

impl fmt::Debug for ID {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        <str as fmt::Debug>::fmt(self, f)
    }
}

impl fmt::Display for ID {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        <str as fmt::Display>::fmt(self, f)
    }
}

impl From<&str> for ID {
    fn from(s: &str) -> Self {
        ID::new(s)
    }
}

impl From<XString> for ID {
    fn from(id: XString) -> Self {
        ID { id }
    }
}

impl From<ID> for XString {
    fn from(id: ID) -> Self {
        id.id
    }
}

impl From<&ID> for XString {
    fn from(id: &ID) -> Self {
        id.id.clone()
    }
}

impl ID {
    pub fn new(s: &str) -> ID {
        ID { id: s.into() }
    }

    pub fn as_str(&self) -> &str {
        &self.id
    }
}