pub struct ConformanceResult {
pub id: &'static str,
pub category: &'static str,
pub outcome: Outcome,
}Expand description
Outcome of running a single conformance test.
Fields§
§id: &'static strStable identifier (kebab-case). Becomes part of the JSON report and the badge URL hash.
category: &'static strCategory for output grouping. Free-text; the binary groups by exact-string equality.
outcome: OutcomePass/fail outcome.
Trait Implementations§
Source§impl Clone for ConformanceResult
impl Clone for ConformanceResult
Source§fn clone(&self) -> ConformanceResult
fn clone(&self) -> ConformanceResult
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 moreAuto Trait Implementations§
impl Freeze for ConformanceResult
impl RefUnwindSafe for ConformanceResult
impl Send for ConformanceResult
impl Sync for ConformanceResult
impl Unpin for ConformanceResult
impl UnsafeUnpin for ConformanceResult
impl UnwindSafe for ConformanceResult
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