This commit is contained in:
Rob Watson 2020-07-04 09:32:36 +02:00
parent ad738296a0
commit b727949dcd
1 changed files with 13 additions and 13 deletions

View File

@ -26,29 +26,29 @@ const DEFAULT_SIZE: usize = 25;
#[derive(Copy, Clone, Debug, Deserialize)]
enum SortKey {
Name,
Size,
Seeds,
Leeches,
Scraped,
Name,
Size,
Seeds,
Leeches,
Scraped,
}
impl Default for SortKey {
fn default() -> Self {
Self::Scraped
}
fn default() -> Self {
Self::Scraped
}
}
#[derive(Copy, Clone, Debug, Deserialize)]
enum SortDirection {
Asc,
Desc,
Asc,
Desc,
}
impl Default for SortDirection {
fn default() -> Self {
Self::Desc
}
fn default() -> Self {
Self::Desc
}
}
#[actix_rt::main]