pub struct VerificationResult {
pub law: ConservationLaw,
pub before: f64,
pub after: f64,
pub delta: f64,
pub epsilon: f64,
pub verdict: Ternary,
}Expand description
Result of a single conservation verification.
Fields§
§law: ConservationLawThe law that was checked.
before: f64Quantity before kernel execution.
after: f64Quantity after kernel execution.
delta: f64Absolute difference |after - before|.
epsilon: f64Epsilon threshold for approximate conservation.
verdict: TernaryTernary verdict.
Implementations§
Trait Implementations§
Source§impl Clone for VerificationResult
impl Clone for VerificationResult
Source§fn clone(&self) -> VerificationResult
fn clone(&self) -> VerificationResult
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 VerificationResult
impl Debug for VerificationResult
Auto Trait Implementations§
impl Freeze for VerificationResult
impl RefUnwindSafe for VerificationResult
impl Send for VerificationResult
impl Sync for VerificationResult
impl Unpin for VerificationResult
impl UnsafeUnpin for VerificationResult
impl UnwindSafe for VerificationResult
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