pub enum ReportVerdict {
Clean,
HotPathChangesNeeded,
ColdCodeDetected,
LicenseExpiredGrace,
Unknown,
}Expand description
Top-level report verdict (was Verdict in 0.1). Summarises the overall
state of the run; per-finding verdicts live on Finding::verdict.
Unknown variants are forward-mapped to ReportVerdict::Unknown.
Variants§
Clean
No action required — production coverage confirms the codebase.
HotPathChangesNeeded
One or more hot paths need attention (regression / drift).
ColdCodeDetected
At least one finding indicates cold code that should be removed or reviewed.
LicenseExpiredGrace
The license JWT has expired but the sidecar is still operating inside the configured grace window. Output is advisory.
Unknown
Sentinel for forward-compatibility with newer sidecars.
Trait Implementations§
Source§impl Clone for ReportVerdict
impl Clone for ReportVerdict
Source§fn clone(&self) -> ReportVerdict
fn clone(&self) -> ReportVerdict
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 ReportVerdict
impl Debug for ReportVerdict
Source§impl<'de> Deserialize<'de> for ReportVerdict
impl<'de> Deserialize<'de> for ReportVerdict
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ReportVerdict
impl RefUnwindSafe for ReportVerdict
impl Send for ReportVerdict
impl Sync for ReportVerdict
impl Unpin for ReportVerdict
impl UnsafeUnpin for ReportVerdict
impl UnwindSafe for ReportVerdict
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