pub struct EnrichedFinding {
pub original_finding: Finding,
pub oz_type: Option<OZVulnerabilityType>,
pub oz_recommendations: Vec<OZRecommendation>,
}Expand description
Finding enriched with OZ context
Fields§
§original_finding: FindingOriginal Sentri finding
oz_type: Option<OZVulnerabilityType>Mapped OZ vulnerability type
oz_recommendations: Vec<OZRecommendation>OZ recommendations
Implementations§
Source§impl EnrichedFinding
impl EnrichedFinding
Sourcepub fn to_audit_report(&self) -> String
pub fn to_audit_report(&self) -> String
Generate OZ audit report section
Trait Implementations§
Source§impl Clone for EnrichedFinding
impl Clone for EnrichedFinding
Source§fn clone(&self) -> EnrichedFinding
fn clone(&self) -> EnrichedFinding
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 moreAuto Trait Implementations§
impl Freeze for EnrichedFinding
impl RefUnwindSafe for EnrichedFinding
impl Send for EnrichedFinding
impl Sync for EnrichedFinding
impl Unpin for EnrichedFinding
impl UnsafeUnpin for EnrichedFinding
impl UnwindSafe for EnrichedFinding
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