pub struct AdapterReport {
pub kind: AdapterKind,
pub findings: Vec<AdapterFinding>,
pub masked_output: String,
}Expand description
Common report shape returned by simple adapter wrappers.
Fields§
§kind: AdapterKindAdapter that produced this report.
findings: Vec<AdapterFinding>Findings grouped by adapter-specific location.
masked_output: StringMasked output for the whole input.
Trait Implementations§
Source§impl Clone for AdapterReport
impl Clone for AdapterReport
Source§fn clone(&self) -> AdapterReport
fn clone(&self) -> AdapterReport
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 AdapterReport
impl Debug for AdapterReport
Source§impl<'de> Deserialize<'de> for AdapterReport
impl<'de> Deserialize<'de> for AdapterReport
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 AdapterReport
impl PartialEq for AdapterReport
Source§fn eq(&self, other: &AdapterReport) -> bool
fn eq(&self, other: &AdapterReport) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for AdapterReport
impl Serialize for AdapterReport
impl StructuralPartialEq for AdapterReport
Auto Trait Implementations§
impl Freeze for AdapterReport
impl RefUnwindSafe for AdapterReport
impl Send for AdapterReport
impl Sync for AdapterReport
impl Unpin for AdapterReport
impl UnsafeUnpin for AdapterReport
impl UnwindSafe for AdapterReport
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