pub struct ConformanceTestReport {
pub test: Symbol,
pub passed: bool,
pub detail: Option<String>,
pub evidence: Ref,
}Expand description
Result of one conformance test, with a reference to its published evidence.
Fields§
§test: SymbolSymbol of the test.
passed: boolWhether the test passed.
detail: Option<String>Optional failure detail.
evidence: RefReference to the published test-run evidence.
Trait Implementations§
Source§impl Clone for ConformanceTestReport
impl Clone for ConformanceTestReport
Source§fn clone(&self) -> ConformanceTestReport
fn clone(&self) -> ConformanceTestReport
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 ConformanceTestReport
impl Debug for ConformanceTestReport
impl Eq for ConformanceTestReport
Source§impl PartialEq for ConformanceTestReport
impl PartialEq for ConformanceTestReport
Source§fn eq(&self, other: &ConformanceTestReport) -> bool
fn eq(&self, other: &ConformanceTestReport) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ConformanceTestReport
Auto Trait Implementations§
impl Freeze for ConformanceTestReport
impl RefUnwindSafe for ConformanceTestReport
impl Send for ConformanceTestReport
impl Sync for ConformanceTestReport
impl Unpin for ConformanceTestReport
impl UnsafeUnpin for ConformanceTestReport
impl UnwindSafe for ConformanceTestReport
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.