pub struct Bm25Hit {
pub rowid: i64,
pub id: String,
pub score: f64,
}Expand description
A single BM25 search hit.
Fields§
§rowid: i64Memory rowid (SQLite internal).
id: StringMemory entry ID.
score: f64BM25 relevance score (higher = more relevant).
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Bm25Hit
impl RefUnwindSafe for Bm25Hit
impl Send for Bm25Hit
impl Sync for Bm25Hit
impl Unpin for Bm25Hit
impl UnsafeUnpin for Bm25Hit
impl UnwindSafe for Bm25Hit
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