pub enum Found {
At(u32),
Absent,
}Expand description
Where one literal sits in a dictionary that came with its sorted order.
Variants§
At(u32)
The dictionary holds the literal under this code, so a row matches exactly when its code is this one.
Absent
The dictionary does not hold the literal at all, so no row of this column matches it. This is the case a whole scan can sometimes be skipped on, and it costs the same search to find.
Trait Implementations§
impl Copy for Found
impl Eq for Found
impl StructuralPartialEq for Found
Auto Trait Implementations§
impl Freeze for Found
impl RefUnwindSafe for Found
impl Send for Found
impl Sync for Found
impl Unpin for Found
impl UnsafeUnpin for Found
impl UnwindSafe for Found
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