pub trait Sorter: Fn(&Room, &Room) -> Ordering { }
A trait “alias” that represents a sorter.
A sorter is simply a function that receives two &Rooms and returns a Ordering.
&Room
Ordering