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
use clashctl_core::model::ConnectionWithSpeed;
use crate::{EndlessSelf, OrderBy, SortMethod, SortOrder};
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, strum::EnumIter)]
enum ConSortBy {
Host,
Down,
Up,
DownSpeed,
UpSpeed,
Chains,
Rule,
Time,
Src,
Dest,
Type,
}
impl SortMethod<ConnectionWithSpeed> for ConSortBy {
fn sort_fn(&self, a: &ConnectionWithSpeed, b: &ConnectionWithSpeed) -> std::cmp::Ordering {
todo!()
}
}
impl EndlessSelf for ConSortBy {
fn next_self(&mut self) {
todo!()
}
fn prev_self(&mut self) {
todo!()
}
}
pub struct ConSort {
by: ConSortBy,
order: SortOrder,
}
impl EndlessSelf for ConSort {
fn next_self(&mut self) {
todo!()
}
fn prev_self(&mut self) {
todo!()
}
}
impl SortMethod<ConnectionWithSpeed> for ConSort {
fn sort_fn(&self, a: &ConnectionWithSpeed, b: &ConnectionWithSpeed) -> std::cmp::Ordering {
self.by.sort_fn(a, b).order_by(self.order)
}
}