pub struct ScanResult {
pub workflows_scanned: usize,
pub findings: Vec<Finding>,
pub suppressed: Vec<Suppressed>,
pub online_rules_skipped: bool,
}Expand description
한 저장소에 대한 스캔 결과.
Fields§
§workflows_scanned: usize§findings: Vec<Finding>활성 발견 — 종료 코드와 집계는 이것만 본다.
suppressed: Vec<Suppressed>무시 주석으로 수용된 발견 — 사유와 함께 보존된다.
online_rules_skipped: bool오프라인 실행이라 온라인 규칙(R5·R10·LOCK 대조)을 건너뛰었는가 — 리포트에 안내.
Auto Trait Implementations§
impl Freeze for ScanResult
impl RefUnwindSafe for ScanResult
impl Send for ScanResult
impl Sync for ScanResult
impl Unpin for ScanResult
impl UnsafeUnpin for ScanResult
impl UnwindSafe for ScanResult
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