pub struct OmenaTestkitFixtureSeedCorpusReportV0 {
pub schema_version: &'static str,
pub product: &'static str,
pub fixture_grammar: &'static str,
pub fixture_count: usize,
pub lane_count: usize,
pub metadata_count: usize,
pub marker_count: usize,
pub all_seeds_parse: bool,
pub reports: Vec<OmenaTestkitFixtureSeedReportV0>,
}Expand description
Fixture seed corpus summary.
Fields§
§schema_version: &'static strSchema version.
product: &'static strProduct surface name.
fixture_grammar: &'static strFixture grammar.
fixture_count: usizeFixture count.
lane_count: usizeCovered lane count.
metadata_count: usizeParsed metadata count across all seed files.
marker_count: usizeParsed marker count across all seed files.
all_seeds_parse: boolWhether every seed parses with the shared fixture grammar.
reports: Vec<OmenaTestkitFixtureSeedReportV0>Seed reports.
Trait Implementations§
Source§impl Clone for OmenaTestkitFixtureSeedCorpusReportV0
impl Clone for OmenaTestkitFixtureSeedCorpusReportV0
Source§fn clone(&self) -> OmenaTestkitFixtureSeedCorpusReportV0
fn clone(&self) -> OmenaTestkitFixtureSeedCorpusReportV0
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 moreimpl Eq for OmenaTestkitFixtureSeedCorpusReportV0
impl StructuralPartialEq for OmenaTestkitFixtureSeedCorpusReportV0
Auto Trait Implementations§
impl Freeze for OmenaTestkitFixtureSeedCorpusReportV0
impl RefUnwindSafe for OmenaTestkitFixtureSeedCorpusReportV0
impl Send for OmenaTestkitFixtureSeedCorpusReportV0
impl Sync for OmenaTestkitFixtureSeedCorpusReportV0
impl Unpin for OmenaTestkitFixtureSeedCorpusReportV0
impl UnsafeUnpin for OmenaTestkitFixtureSeedCorpusReportV0
impl UnwindSafe for OmenaTestkitFixtureSeedCorpusReportV0
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