So basically I have this:
let mut sortedNumbers = numbers.clone();
sortedNumbers.sort_by(|a, b| b.rational.cmp(&a.rational));
Where numbers is a &[..]
I want to somehow sort the sortedNumbers vector, but the reference is not mutable. Any ideas?