pub struct CmeScenarioV0 {Show 15 fields
pub schema_version: &'static str,
pub product: &'static str,
pub fixture_grammar: &'static str,
pub archetype: CmeScenarioArchetypeV0,
pub archetype_id: &'static str,
pub file_count: usize,
pub source_file_count: usize,
pub style_file_count: usize,
pub expectation_count: usize,
pub marker_count: usize,
pub metadata_count: usize,
pub expected_products: Vec<String>,
pub shadow_omena_verbs: Vec<String>,
pub readiness: CmeScenarioReadinessV0,
pub call_site: Option<CmeScenarioCallSiteV0>,
}Expand description
Scenario summary produced by the v0.1 testkit scenario macro substrate.
Fields§
§schema_version: &'static strSchema version.
product: &'static strProduct surface.
fixture_grammar: &'static strFixture grammar consumed by this scenario.
archetype: CmeScenarioArchetypeV0Scenario archetype.
archetype_id: &'static strStable archetype identifier.
file_count: usizeParsed file count.
source_file_count: usizeParsed source file count.
style_file_count: usizeParsed style file count.
expectation_count: usizeParsed expectation count.
marker_count: usizeParsed marker count.
metadata_count: usizeParsed metadata count.
expected_products: Vec<String>Product expectations declared by the fixture.
shadow_omena_verbs: Vec<String>Extracted shadow.omena(<verb>) introspection verbs.
readiness: CmeScenarioReadinessV0Readiness evidence.
call_site: Option<CmeScenarioCallSiteV0>Macro call-site evidence, present only for macro-built scenarios.
Trait Implementations§
Source§impl Clone for CmeScenarioV0
impl Clone for CmeScenarioV0
Source§fn clone(&self) -> CmeScenarioV0
fn clone(&self) -> CmeScenarioV0
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 CmeScenarioV0
impl Debug for CmeScenarioV0
impl Eq for CmeScenarioV0
Source§impl PartialEq for CmeScenarioV0
impl PartialEq for CmeScenarioV0
Source§fn eq(&self, other: &CmeScenarioV0) -> bool
fn eq(&self, other: &CmeScenarioV0) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for CmeScenarioV0
impl Serialize for CmeScenarioV0
impl StructuralPartialEq for CmeScenarioV0
Auto Trait Implementations§
impl Freeze for CmeScenarioV0
impl RefUnwindSafe for CmeScenarioV0
impl Send for CmeScenarioV0
impl Sync for CmeScenarioV0
impl Unpin for CmeScenarioV0
impl UnsafeUnpin for CmeScenarioV0
impl UnwindSafe for CmeScenarioV0
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