pub struct RiskReport {
pub findings: Vec<RiskFinding>,
pub score: u8,
}Fields§
§findings: Vec<RiskFinding>§score: u8Trait Implementations§
impl AnalysisSection for RiskReport
Source§impl Analyzer<RiskReport> for RiskAnalyzer<'_>
impl Analyzer<RiskReport> for RiskAnalyzer<'_>
fn analyze(&self, _snapshot: &RepositorySnapshot) -> RiskReport
Source§impl Clone for RiskReport
impl Clone for RiskReport
Source§fn clone(&self) -> RiskReport
fn clone(&self) -> RiskReport
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 RiskReport
impl RefUnwindSafe for RiskReport
impl Send for RiskReport
impl Sync for RiskReport
impl Unpin for RiskReport
impl UnsafeUnpin for RiskReport
impl UnwindSafe for RiskReport
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