pub enum ReportRecord {
Header(ReportHeader),
Assert(AssertRecord),
Action(ActionRecord),
Artifact(ArtifactRecord),
Extract(ExtractRecord),
Telemetry(TelemetryRecord),
Case(CaseRecord),
Summary(SummaryRecord),
}Variants§
Header(ReportHeader)
Assert(AssertRecord)
Action(ActionRecord)
Artifact(ArtifactRecord)
Extract(ExtractRecord)
Telemetry(TelemetryRecord)
Case(CaseRecord)
Summary(SummaryRecord)
Trait Implementations§
Source§impl Clone for ReportRecord
impl Clone for ReportRecord
Source§fn clone(&self) -> ReportRecord
fn clone(&self) -> ReportRecord
Returns a duplicate of the value. Read more
1.0.0 · 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 ReportRecord
impl Debug for ReportRecord
Source§impl PartialEq for ReportRecord
impl PartialEq for ReportRecord
Source§impl Serialize for ReportRecord
impl Serialize for ReportRecord
impl StructuralPartialEq for ReportRecord
Auto Trait Implementations§
impl Freeze for ReportRecord
impl RefUnwindSafe for ReportRecord
impl Send for ReportRecord
impl Sync for ReportRecord
impl Unpin for ReportRecord
impl UnsafeUnpin for ReportRecord
impl UnwindSafe for ReportRecord
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