pub struct ScanReport {
pub results: Vec<AnalysisResult>,
pub score: ScanScore,
}Expand description
The complete output of a HAR file scan.
Fields§
§results: Vec<AnalysisResult>De-duplicated results, one per check — the worst severity observed across all entries wins.
score: ScanScoreAuto Trait Implementations§
impl Freeze for ScanReport
impl RefUnwindSafe for ScanReport
impl Send for ScanReport
impl Sync for ScanReport
impl Unpin for ScanReport
impl UnsafeUnpin for ScanReport
impl UnwindSafe for ScanReport
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