pub struct PythonEvidenceCase {
pub name: &'static str,
pub dimension: &'static str,
pub source: &'static str,
pub expected: &'static str,
pub external_oracle: bool,
}Expand description
One frozen differential or regression case.
Fields§
§name: &'static strStable case name.
dimension: &'static strBehavior dimension exercised by the case.
source: &'static strPython source supplied to the SIM codec.
expected: &'static strFrozen observation or fail-closed outcome.
external_oracle: boolWhether the expected value came from the frozen external oracle.
Trait Implementations§
Source§impl Clone for PythonEvidenceCase
impl Clone for PythonEvidenceCase
Source§fn clone(&self) -> PythonEvidenceCase
fn clone(&self) -> PythonEvidenceCase
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 Copy for PythonEvidenceCase
Source§impl Debug for PythonEvidenceCase
impl Debug for PythonEvidenceCase
impl Eq for PythonEvidenceCase
Source§impl PartialEq for PythonEvidenceCase
impl PartialEq for PythonEvidenceCase
impl StructuralPartialEq for PythonEvidenceCase
Auto Trait Implementations§
impl Freeze for PythonEvidenceCase
impl RefUnwindSafe for PythonEvidenceCase
impl Send for PythonEvidenceCase
impl Sync for PythonEvidenceCase
impl Unpin for PythonEvidenceCase
impl UnsafeUnpin for PythonEvidenceCase
impl UnwindSafe for PythonEvidenceCase
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§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.