#[repr(u32)]pub enum Bias {
GreatestLowerBound = 1,
LeastUpperBound = 2,
}
Expand description
When doing fuzzy searching, whether to slide the next larger or next smaller mapping from the queried location.
Variants§
GreatestLowerBound = 1
Slide to the next smaller mapping.
LeastUpperBound = 2
Slide to the next larger mapping.
Trait Implementations§
impl Copy for Bias
impl Eq for Bias
impl StructuralPartialEq for Bias
Auto Trait Implementations§
impl Freeze for Bias
impl RefUnwindSafe for Bias
impl Send for Bias
impl Sync for Bias
impl Unpin for Bias
impl UnwindSafe for Bias
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more