pub struct FuseableSearchResult {
pub index: usize,
pub score: f64,
pub results: Vec<FResult>,
}Expand description
Return type for performing a search over a list of Fuseable structs
Fields§
§index: usizecorresponding index of the search result in the original list
score: f64Search rating of the search result, 0.0 is a perfect match 1.0 is a perfect mismatch
results: Vec<FResult>Ranges of matches in the search query, useful if you want to hightlight matches.
Trait Implementations§
Source§impl Debug for FuseableSearchResult
impl Debug for FuseableSearchResult
Source§impl PartialEq for FuseableSearchResult
impl PartialEq for FuseableSearchResult
impl StructuralPartialEq for FuseableSearchResult
Auto Trait Implementations§
impl Freeze for FuseableSearchResult
impl RefUnwindSafe for FuseableSearchResult
impl Send for FuseableSearchResult
impl Sync for FuseableSearchResult
impl Unpin for FuseableSearchResult
impl UnwindSafe for FuseableSearchResult
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more