pub trait SortedInsertArcMutexBy<T>: SortedInsertArcMutexBasic<T> {
// Provided method
fn sorted_insert_by<F: FnMut(&Arc<Mutex<T>>, &T) -> bool>(
&mut self,
element: Arc<Mutex<T>>,
f: F,
) -> usize { ... }
}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.