Apply exported sorting to items itself and nested items

This commit is contained in:
2023-08-07 14:16:44 +02:00
parent 376bfb2852
commit e84a39b7c4
6 changed files with 242 additions and 1 deletions

View File

@@ -239,6 +239,12 @@ pub trait Listable {
pub trait Sortable {
fn sorting_key(&self) -> String;
fn sorted(&mut self) -> &Self
where
Self: Sized,
{
self
}
}
pub trait Comparable: Debug {