pub trait KeyRangeExt {
// Required methods
fn inf() -> Self;
fn new(left: Vec<u8>, right: Vec<u8>) -> Self;
fn compare(&self, other: &Self) -> Ordering;
fn start_bound_inf(&self) -> bool;
fn end_bound_inf(&self) -> bool;
}
Required Methods§
fn inf() -> Self
fn new(left: Vec<u8>, right: Vec<u8>) -> Self
fn compare(&self, other: &Self) -> Ordering
fn start_bound_inf(&self) -> bool
fn end_bound_inf(&self) -> bool
Object Safety§
This trait is not object safe.