pub trait MapSeekTarget<K> {
// Required method
fn cmp_cursor(&self, cursor_location: &K) -> Ordering;
}Required Methods§
fn cmp_cursor(&self, cursor_location: &K) -> Ordering
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".