#[non_exhaustive]pub struct CheckedEggRewriteProofV0 {
pub specificity: EggRewriteClaimEvidenceV0,
pub provenance: EggRewriteClaimEvidenceV0,
pub cascade_safety: EggRewriteClaimEvidenceV0,
/* private fields */
}Expand description
Additive typed replacement for the legacy Boolean proof carrier.
Computed-value preservation remains the existing obligation-family lookup; it is intentionally not represented as a fourth evidence claim.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.specificity: EggRewriteClaimEvidenceV0§provenance: EggRewriteClaimEvidenceV0§cascade_safety: EggRewriteClaimEvidenceV0Implementations§
Source§impl CheckedEggRewriteProofV0
impl CheckedEggRewriteProofV0
pub fn new( specificity: EggRewriteClaimEvidenceV0, obligation_family: ObligationFamilyIdV0, provenance: EggRewriteClaimEvidenceV0, cascade_safety: EggRewriteClaimEvidenceV0, ) -> Self
pub const fn obligation_family(&self) -> ObligationFamilyIdV0
pub const fn computed_value_preserved(&self) -> bool
Trait Implementations§
Source§impl Clone for CheckedEggRewriteProofV0
impl Clone for CheckedEggRewriteProofV0
Source§fn clone(&self) -> CheckedEggRewriteProofV0
fn clone(&self) -> CheckedEggRewriteProofV0
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 moreSource§impl Debug for CheckedEggRewriteProofV0
impl Debug for CheckedEggRewriteProofV0
impl Eq for CheckedEggRewriteProofV0
Source§impl PartialEq for CheckedEggRewriteProofV0
impl PartialEq for CheckedEggRewriteProofV0
impl StructuralPartialEq for CheckedEggRewriteProofV0
Auto Trait Implementations§
impl Freeze for CheckedEggRewriteProofV0
impl RefUnwindSafe for CheckedEggRewriteProofV0
impl Send for CheckedEggRewriteProofV0
impl Sync for CheckedEggRewriteProofV0
impl Unpin for CheckedEggRewriteProofV0
impl UnsafeUnpin for CheckedEggRewriteProofV0
impl UnwindSafe for CheckedEggRewriteProofV0
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.