pub struct InterpretationSummary {
pub iterations: u32,
pub converged: bool,
pub alarm_count: usize,
pub proven_safe: bool,
}Expand description
A summary of an abstract interpretation run.
Fields§
§iterations: u32§converged: bool§alarm_count: usize§proven_safe: boolImplementations§
Trait Implementations§
Source§impl Clone for InterpretationSummary
impl Clone for InterpretationSummary
Source§fn clone(&self) -> InterpretationSummary
fn clone(&self) -> InterpretationSummary
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 moreAuto Trait Implementations§
impl Freeze for InterpretationSummary
impl RefUnwindSafe for InterpretationSummary
impl Send for InterpretationSummary
impl Sync for InterpretationSummary
impl Unpin for InterpretationSummary
impl UnsafeUnpin for InterpretationSummary
impl UnwindSafe for InterpretationSummary
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