pub struct HomoglyphDetection {
pub position: usize,
pub original_char: char,
pub likely_intended: char,
}Expand description
Detected homoglyph at a specific position.
Fields§
§position: usize§original_char: char§likely_intended: charTrait Implementations§
Source§impl Clone for HomoglyphDetection
impl Clone for HomoglyphDetection
Source§fn clone(&self) -> HomoglyphDetection
fn clone(&self) -> HomoglyphDetection
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for HomoglyphDetection
impl Debug for HomoglyphDetection
Source§impl PartialEq for HomoglyphDetection
impl PartialEq for HomoglyphDetection
impl StructuralPartialEq for HomoglyphDetection
Auto Trait Implementations§
impl Freeze for HomoglyphDetection
impl RefUnwindSafe for HomoglyphDetection
impl Send for HomoglyphDetection
impl Sync for HomoglyphDetection
impl Unpin for HomoglyphDetection
impl UnsafeUnpin for HomoglyphDetection
impl UnwindSafe for HomoglyphDetection
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