pub struct StepReport {
pub index: usize,
pub summary: String,
pub outcome: StepOutcome,
pub points: Vec<ResolvedPoint>,
pub detail: Option<String>,
pub elapsed_ms: u64,
}Expand description
One step’s record.
Fields§
§index: usize§summary: String§outcome: StepOutcome§points: Vec<ResolvedPoint>§detail: Option<String>Present when the outcome is Failed — what went wrong, in words.
elapsed_ms: u64Trait Implementations§
Source§impl Clone for StepReport
impl Clone for StepReport
Source§fn clone(&self) -> StepReport
fn clone(&self) -> StepReport
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 StepReport
impl Debug for StepReport
Source§impl<'de> Deserialize<'de> for StepReport
impl<'de> Deserialize<'de> for StepReport
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for StepReport
impl PartialEq for StepReport
Source§impl Serialize for StepReport
impl Serialize for StepReport
impl StructuralPartialEq for StepReport
Auto Trait Implementations§
impl Freeze for StepReport
impl RefUnwindSafe for StepReport
impl Send for StepReport
impl Sync for StepReport
impl Unpin for StepReport
impl UnsafeUnpin for StepReport
impl UnwindSafe for StepReport
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