pub struct TextMatch {
pub key: Vec<u8>,
pub score: f64,
}Expand description
One ranked hit.
Fields§
§key: Vec<u8>Row key.
score: f64Shard-local BM25 score.
Trait Implementations§
impl StructuralPartialEq for TextMatch
Auto Trait Implementations§
impl Freeze for TextMatch
impl RefUnwindSafe for TextMatch
impl Send for TextMatch
impl Sync for TextMatch
impl Unpin for TextMatch
impl UnsafeUnpin for TextMatch
impl UnwindSafe for TextMatch
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