pub struct FResult {
pub value: String,
pub score: f64,
pub ranges: Vec<Range<usize>>,
}
Expand description
Return type for performing a search with a single fuseable property of struct
Fields§
§value: String
The corresponding field name for this search result
score: f64
Search rating of the search result, 0.0 is a perfect match 1.0 is a perfect mismatch
ranges: Vec<Range<usize>>
Ranges of matches in the search query, useful if you want to hightlight matches.
Trait Implementations§
impl StructuralPartialEq for FResult
Auto Trait Implementations§
impl Freeze for FResult
impl RefUnwindSafe for FResult
impl Send for FResult
impl Sync for FResult
impl Unpin for FResult
impl UnwindSafe for FResult
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