pub struct LookalikeMatch {
pub registered: String,
pub edit_distance: usize,
}Expand description
A suspicious domain match returned by lookalike_check.
Fields§
§registered: StringThe registered profile domain that the candidate closely resembles.
edit_distance: usizeLevenshtein edit distance between the normalised forms.
Auto Trait Implementations§
impl Freeze for LookalikeMatch
impl RefUnwindSafe for LookalikeMatch
impl Send for LookalikeMatch
impl Sync for LookalikeMatch
impl Unpin for LookalikeMatch
impl UnsafeUnpin for LookalikeMatch
impl UnwindSafe for LookalikeMatch
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