pub struct PiiAnalysis {
pub has_pii: bool,
pub total_matches: usize,
pub unique_types: usize,
pub type_counts: HashMap<PiiType, usize>,
pub matches: Vec<PiiMatch>,
}Fields§
§has_pii: bool§total_matches: usize§unique_types: usize§type_counts: HashMap<PiiType, usize>§matches: Vec<PiiMatch>Trait Implementations§
Source§impl Clone for PiiAnalysis
impl Clone for PiiAnalysis
Source§fn clone(&self) -> PiiAnalysis
fn clone(&self) -> PiiAnalysis
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 moreAuto Trait Implementations§
impl Freeze for PiiAnalysis
impl RefUnwindSafe for PiiAnalysis
impl Send for PiiAnalysis
impl Sync for PiiAnalysis
impl Unpin for PiiAnalysis
impl UnwindSafe for PiiAnalysis
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