pub struct Report {
pub title: String,
pub generated_at: String,
pub program: String,
pub invariants_checked: usize,
pub violations_found: usize,
pub coverage_percent: u8,
pub protected_functions: Vec<String>,
pub unprotected_functions: Vec<String>,
pub severity_breakdown: SeverityBreakdown,
}Expand description
A complete analysis report.
Fields§
§title: StringReport title.
generated_at: StringTimestamp of generation.
program: StringProgram analyzed.
invariants_checked: usizeTotal invariants checked.
violations_found: usizeViolations found.
coverage_percent: u8Coverage percentage.
protected_functions: Vec<String>Functions protected.
unprotected_functions: Vec<String>Functions not protected.
severity_breakdown: SeverityBreakdownSeverity breakdown.
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Report
impl<'de> Deserialize<'de> for Report
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 Report
impl RefUnwindSafe for Report
impl Send for Report
impl Sync for Report
impl Unpin for Report
impl UnsafeUnpin for Report
impl UnwindSafe for Report
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