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
use super::*;
impl CssAttribute {
pub fn new<S: Into<String>>(key: S, value: S) -> Self {
Self { key: key.into(), value: value.into() }
}
}
impl Debug for CssAttribute {
fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
write!(f, "{}: {};", self.key, self.value)
}
}
impl Display for CssAttribute {
fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
Debug::fmt(self, f)
}
}
impl Eq for CssAttribute {}
impl PartialEq<Self> for CssAttribute {
fn eq(&self, other: &Self) -> bool {
self.key.eq(&other.key)
}
}
impl PartialOrd<Self> for CssAttribute {
fn partial_cmp(&self, other: &Self) -> Option<Ordering> {
self.key.partial_cmp(&other.key)
}
}
impl Ord for CssAttribute {
fn cmp(&self, other: &Self) -> Ordering {
self.key.cmp(&other.key)
}
}