pub struct StandardTestReport {
pub profile: Symbol,
pub organs: Vec<OrganTestReport>,
pub reported_badges: Vec<FidelityBadge>,
}Expand description
Report of running the harness against a profile: per-organ results and the fidelity badges as lowered by any failures.
Fields§
§profile: SymbolSymbol of the tested profile.
organs: Vec<OrganTestReport>Per-organ test reports.
reported_badges: Vec<FidelityBadge>Fidelity badges after applying test failures.
Implementations§
Trait Implementations§
Source§impl Clone for StandardTestReport
impl Clone for StandardTestReport
Source§fn clone(&self) -> StandardTestReport
fn clone(&self) -> StandardTestReport
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 StandardTestReport
impl Debug for StandardTestReport
impl Eq for StandardTestReport
Source§impl PartialEq for StandardTestReport
impl PartialEq for StandardTestReport
Source§fn eq(&self, other: &StandardTestReport) -> bool
fn eq(&self, other: &StandardTestReport) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for StandardTestReport
Auto Trait Implementations§
impl Freeze for StandardTestReport
impl RefUnwindSafe for StandardTestReport
impl Send for StandardTestReport
impl Sync for StandardTestReport
impl Unpin for StandardTestReport
impl UnsafeUnpin for StandardTestReport
impl UnwindSafe for StandardTestReport
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.