pub struct OrganTestReport {
pub organ: Symbol,
pub tests: Vec<ConformanceTestReport>,
}Expand description
Per-organ slice of a StandardTestReport.
Fields§
§organ: SymbolThe organ these results cover.
tests: Vec<ConformanceTestReport>Per-test reports for this organ.
Implementations§
Trait Implementations§
Source§impl Clone for OrganTestReport
impl Clone for OrganTestReport
Source§fn clone(&self) -> OrganTestReport
fn clone(&self) -> OrganTestReport
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 OrganTestReport
impl Debug for OrganTestReport
impl Eq for OrganTestReport
Source§impl PartialEq for OrganTestReport
impl PartialEq for OrganTestReport
Source§fn eq(&self, other: &OrganTestReport) -> bool
fn eq(&self, other: &OrganTestReport) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for OrganTestReport
Auto Trait Implementations§
impl Freeze for OrganTestReport
impl RefUnwindSafe for OrganTestReport
impl Send for OrganTestReport
impl Sync for OrganTestReport
impl Unpin for OrganTestReport
impl UnsafeUnpin for OrganTestReport
impl UnwindSafe for OrganTestReport
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.