pub struct AdapterFinding {
pub location: String,
pub findings: Vec<PiiEntity>,
pub masked_value: Option<String>,
}Expand description
A grouped finding location exposed through the common adapter report.
Fields§
§location: StringHuman-readable location such as line:1, $.user.email, or row:1,column:2.
findings: Vec<PiiEntity>Findings detected at this location.
masked_value: Option<String>Masked value for this location, when available.
Trait Implementations§
Source§impl Clone for AdapterFinding
impl Clone for AdapterFinding
Source§fn clone(&self) -> AdapterFinding
fn clone(&self) -> AdapterFinding
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 AdapterFinding
impl Debug for AdapterFinding
Source§impl<'de> Deserialize<'de> for AdapterFinding
impl<'de> Deserialize<'de> for AdapterFinding
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for AdapterFinding
impl PartialEq for AdapterFinding
Source§fn eq(&self, other: &AdapterFinding) -> bool
fn eq(&self, other: &AdapterFinding) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for AdapterFinding
impl Serialize for AdapterFinding
impl StructuralPartialEq for AdapterFinding
Auto Trait Implementations§
impl Freeze for AdapterFinding
impl RefUnwindSafe for AdapterFinding
impl Send for AdapterFinding
impl Sync for AdapterFinding
impl Unpin for AdapterFinding
impl UnsafeUnpin for AdapterFinding
impl UnwindSafe for AdapterFinding
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