pub struct SafetyCommandReport {
pub reports: Vec<SafetyReport>,
pub overall_verdict: SafetyVerdict,
}Expand description
Report from the standalone safety analysis command.
Fields§
§reports: Vec<SafetyReport>Per-file safety reports.
overall_verdict: SafetyVerdictOverall verdict across all files.
Trait Implementations§
Source§impl Clone for SafetyCommandReport
impl Clone for SafetyCommandReport
Source§fn clone(&self) -> SafetyCommandReport
fn clone(&self) -> SafetyCommandReport
Returns a duplicate of the value. Read more
1.0.0 · 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 SafetyCommandReport
impl Debug for SafetyCommandReport
Auto Trait Implementations§
impl Freeze for SafetyCommandReport
impl RefUnwindSafe for SafetyCommandReport
impl Send for SafetyCommandReport
impl Sync for SafetyCommandReport
impl Unpin for SafetyCommandReport
impl UnsafeUnpin for SafetyCommandReport
impl UnwindSafe for SafetyCommandReport
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