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
use std::fmt;

#[derive(Debug, Clone, PartialEq, Eq, PartialOrd, Ord, Hash)]
pub(crate) enum Name {
    Model(String),
    CompositeType(String),
}

impl Name {
    pub(super) fn as_model_name(&self) -> Option<&str> {
        match self {
            Name::Model(name) => Some(name),
            Name::CompositeType(_) => None,
        }
    }

    pub(super) fn as_type_name(&self) -> Option<&str> {
        match self {
            Name::Model(_) => None,
            Name::CompositeType(name) => Some(name),
        }
    }

    pub(crate) fn take(self) -> String {
        match self {
            Name::Model(name) => name,
            Name::CompositeType(name) => name,
        }
    }

    pub(super) fn is_composite_type(&self) -> bool {
        matches!(self, Self::CompositeType(_))
    }
}

impl fmt::Display for Name {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        match self {
            Name::Model(name) => f.write_str(name),
            Name::CompositeType(name) => f.write_str(name),
        }
    }
}

impl AsRef<str> for Name {
    fn as_ref(&self) -> &str {
        match self {
            Name::Model(name) => name.as_ref(),
            Name::CompositeType(name) => name.as_ref(),
        }
    }
}