pub trait Sort<T: Ord> { // Required method fn sort(arr: &mut [T]); }
Types that implement this trait can sort slices of data
Sorts a slice of data