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
/// Similar to tag population.
macro_rules! make_styles {
    // Create shortcut macros for any style; populate these functions in the submodule.
    { $($st_pascal_case:ident => $st:expr),+ } => {

        /// The St enum restricts element-creation to only valid styles.
        #[derive(Clone, Debug, PartialEq, Eq, Hash)]
        pub enum St {
            $(
                $st_pascal_case,
            )+
            Custom(std::borrow::Cow<'static, str>)
        }

        impl St {
            pub fn as_str(&self) -> &str {
                match self {
                    $ (
                        St::$st_pascal_case => $st,
                    ) +
                    St::Custom(style) => &style
                }
            }
        }

        impl std::fmt::Display for St {
            fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
                write!(f, "{}", self.as_str())
            }
        }

        impl<T: Into<std::borrow::Cow<'static, str>>> From<T> for St {
            fn from(style: T) -> Self {
                let style = style.into();
                match style.as_ref() {
                    $(
                        $st => St::$st_pascal_case,
                    ) +
                    _ => {
                        St::Custom(style)
                    }
                }
            }
        }
    }
}

mod style_names;
pub use style_names::St;