pub struct CustomPropertyLeastFixedPointSummaryV0 {Show 13 fields
pub schema_version: &'static str,
pub product: &'static str,
pub input_count: usize,
pub resolved_count: usize,
pub guaranteed_invalid_count: usize,
pub iteration_count: usize,
pub iteration_bound: usize,
pub reached_fixed_point: bool,
pub monotone_witness_valid: bool,
pub proof: CustomPropertyLeastFixedPointProofV0,
pub iteration_trace: Vec<CustomPropertyLeastFixedPointIterationV0>,
pub entries: Vec<CustomPropertyLeastFixedPointEntryV0>,
pub ready_surfaces: Vec<&'static str>,
}Fields§
§schema_version: &'static str§product: &'static str§input_count: usize§resolved_count: usize§guaranteed_invalid_count: usize§iteration_count: usize§iteration_bound: usize§reached_fixed_point: bool§monotone_witness_valid: bool§proof: CustomPropertyLeastFixedPointProofV0§iteration_trace: Vec<CustomPropertyLeastFixedPointIterationV0>§entries: Vec<CustomPropertyLeastFixedPointEntryV0>§ready_surfaces: Vec<&'static str>Trait Implementations§
Source§impl Clone for CustomPropertyLeastFixedPointSummaryV0
impl Clone for CustomPropertyLeastFixedPointSummaryV0
Source§fn clone(&self) -> CustomPropertyLeastFixedPointSummaryV0
fn clone(&self) -> CustomPropertyLeastFixedPointSummaryV0
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Eq for CustomPropertyLeastFixedPointSummaryV0
Source§impl PartialEq for CustomPropertyLeastFixedPointSummaryV0
impl PartialEq for CustomPropertyLeastFixedPointSummaryV0
Source§fn eq(&self, other: &CustomPropertyLeastFixedPointSummaryV0) -> bool
fn eq(&self, other: &CustomPropertyLeastFixedPointSummaryV0) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CustomPropertyLeastFixedPointSummaryV0
Auto Trait Implementations§
impl Freeze for CustomPropertyLeastFixedPointSummaryV0
impl RefUnwindSafe for CustomPropertyLeastFixedPointSummaryV0
impl Send for CustomPropertyLeastFixedPointSummaryV0
impl Sync for CustomPropertyLeastFixedPointSummaryV0
impl Unpin for CustomPropertyLeastFixedPointSummaryV0
impl UnsafeUnpin for CustomPropertyLeastFixedPointSummaryV0
impl UnwindSafe for CustomPropertyLeastFixedPointSummaryV0
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