pub struct AnalysisResponse {
pub run: AnalysisRun,
pub findings: Vec<Finding>,
}Expand description
What a backend returns: normalized findings plus the evidence for the run that produced them.
Fields§
§run: AnalysisRunThe run record, ready to persist.
findings: Vec<Finding>The findings it produced, ordered by their stable identity key.
Trait Implementations§
Source§impl Clone for AnalysisResponse
impl Clone for AnalysisResponse
Source§fn clone(&self) -> AnalysisResponse
fn clone(&self) -> AnalysisResponse
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 AnalysisResponse
impl Debug for AnalysisResponse
impl Eq for AnalysisResponse
Source§impl PartialEq for AnalysisResponse
impl PartialEq for AnalysisResponse
impl StructuralPartialEq for AnalysisResponse
Auto Trait Implementations§
impl Freeze for AnalysisResponse
impl RefUnwindSafe for AnalysisResponse
impl Send for AnalysisResponse
impl Sync for AnalysisResponse
impl Unpin for AnalysisResponse
impl UnsafeUnpin for AnalysisResponse
impl UnwindSafe for AnalysisResponse
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.