pub trait RadixSorterBase<T> {
// Required methods
fn new() -> Self;
fn rebalance(&mut self, buffers: &mut Vec<Vec<T>>, intended: usize);
// Provided method
fn recycle(&mut self, buffers: &mut Vec<Vec<T>>) { ... }
}
Expand description
Functionality independent of the type U
used to sort.
Required Methods§
Provided Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.