pub trait EnsureSortable: PartialOrd + Sized {
// Required method
fn find_incomparable<'a>(
values: impl Iterator<Item = &'a Self>,
) -> Option<(usize, usize)>
where Self: 'a;
}Required Methods§
fn find_incomparable<'a>(
values: impl Iterator<Item = &'a Self>,
) -> Option<(usize, usize)>where
Self: 'a,
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".