pub struct Jaro;
Expand description
Distance function for strings using the Jaro similarity factor.
Returns a number in [0, 100]
, inversely proportional to the similarity between
the two strings, where 0 is exactly the same, and 100 is not at all similar.
Trait Implementations§
impl Copy for Jaro
Auto Trait Implementations§
impl Freeze for Jaro
impl RefUnwindSafe for Jaro
impl Send for Jaro
impl Sync for Jaro
impl Unpin for Jaro
impl UnwindSafe for Jaro
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