pub struct SimilarMatch {
pub node: NodeHandle,
pub score: f32,
}Expand description
A candidate element that exceeded the similarity threshold.
Fields§
§node: NodeHandleThe matching node handle.
score: f32Similarity score in [0.0, 1.0].
Auto Trait Implementations§
impl Freeze for SimilarMatch
impl !RefUnwindSafe for SimilarMatch
impl Send for SimilarMatch
impl Sync for SimilarMatch
impl Unpin for SimilarMatch
impl UnsafeUnpin for SimilarMatch
impl !UnwindSafe for SimilarMatch
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