pub struct ScoreResult {
pub score: f64,
pub ranges: Vec<Range<usize>>,
}
Expand description
Return type for performing a search on a single string.
Fields§
§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§
Source§impl Debug for ScoreResult
impl Debug for ScoreResult
Source§impl PartialEq for ScoreResult
impl PartialEq for ScoreResult
impl StructuralPartialEq for ScoreResult
Auto Trait Implementations§
impl Freeze for ScoreResult
impl RefUnwindSafe for ScoreResult
impl Send for ScoreResult
impl Sync for ScoreResult
impl Unpin for ScoreResult
impl UnwindSafe for ScoreResult
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