pub struct PiiMatch {
pub pii_type: PiiType,
pub start: usize,
pub end: usize,
pub masked_value: String,
}Expand description
A matched PII instance
Fields§
§pii_type: PiiType§start: usize§end: usize§masked_value: StringTrait Implementations§
Auto Trait Implementations§
impl Freeze for PiiMatch
impl RefUnwindSafe for PiiMatch
impl Send for PiiMatch
impl Sync for PiiMatch
impl Unpin for PiiMatch
impl UnwindSafe for PiiMatch
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