pub struct OmenaTestkitFixtureSeedReportV0 {
pub label: &'static str,
pub lane: &'static str,
pub parses: bool,
pub parse_error: Option<String>,
pub file_count: usize,
pub expectation_count: usize,
pub metadata_count: usize,
pub marker_count: usize,
pub expected_products: Vec<&'static str>,
pub promotion_target: &'static str,
}Expand description
Parsed fixture seed evidence.
Fields§
§label: &'static strStable fixture label.
lane: &'static strFixture lane.
parses: boolWhether the fixture parses with cme-fixture-v0.
parse_error: Option<String>Parse error when present.
file_count: usizeParsed file count.
expectation_count: usizeParsed expectation count.
metadata_count: usizeParsed file-header metadata count.
marker_count: usizeParsed marker count.
expected_products: Vec<&'static str>Expected product surfaces.
promotion_target: &'static strPromotion target for M4.
Trait Implementations§
Source§impl Clone for OmenaTestkitFixtureSeedReportV0
impl Clone for OmenaTestkitFixtureSeedReportV0
Source§fn clone(&self) -> OmenaTestkitFixtureSeedReportV0
fn clone(&self) -> OmenaTestkitFixtureSeedReportV0
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 PartialEq for OmenaTestkitFixtureSeedReportV0
impl PartialEq for OmenaTestkitFixtureSeedReportV0
Source§fn eq(&self, other: &OmenaTestkitFixtureSeedReportV0) -> bool
fn eq(&self, other: &OmenaTestkitFixtureSeedReportV0) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for OmenaTestkitFixtureSeedReportV0
impl StructuralPartialEq for OmenaTestkitFixtureSeedReportV0
Auto Trait Implementations§
impl Freeze for OmenaTestkitFixtureSeedReportV0
impl RefUnwindSafe for OmenaTestkitFixtureSeedReportV0
impl Send for OmenaTestkitFixtureSeedReportV0
impl Sync for OmenaTestkitFixtureSeedReportV0
impl Unpin for OmenaTestkitFixtureSeedReportV0
impl UnsafeUnpin for OmenaTestkitFixtureSeedReportV0
impl UnwindSafe for OmenaTestkitFixtureSeedReportV0
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