pub struct Coverage {
pub instances: usize,
pub params: usize,
pub params_certain: usize,
pub params_conditional: usize,
pub params_unknown: usize,
pub diagnostics: usize,
}Expand description
Quantitative analysis coverage. Reported in every output so a reader can judge how much of the model the tool actually saw.
Fields§
§instances: usize§params: usize§params_certain: usize§params_conditional: usize§params_unknown: usize§diagnostics: usizeTrait Implementations§
Auto Trait Implementations§
impl Freeze for Coverage
impl RefUnwindSafe for Coverage
impl Send for Coverage
impl Sync for Coverage
impl Unpin for Coverage
impl UnsafeUnpin for Coverage
impl UnwindSafe for Coverage
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