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
use std::cmp::Ordering;
use rr::{Name, RecordType};
#[derive(Eq, PartialEq, Debug, Hash, Clone)]
pub struct RrKey {
pub name: Name,
pub record_type: RecordType,
}
impl RrKey {
pub fn new(name: &Name, record_type: RecordType) -> RrKey {
RrKey {
name: name.clone(),
record_type: record_type,
}
}
pub fn name(&self) -> &Name {
&self.name
}
}
impl PartialOrd for RrKey {
fn partial_cmp(&self, other: &RrKey) -> Option<Ordering> {
Some(self.cmp(other))
}
}
impl Ord for RrKey {
fn cmp(&self, other: &Self) -> Ordering {
let order = self.name.cmp(&other.name);
if order == Ordering::Equal {
self.record_type.cmp(&other.record_type)
} else {
order
}
}
}