pub struct RunReport {
pub run_id: String,
pub timestamp_epoch: u64,
pub commit: String,
pub server_version: String,
pub host: String,
pub total: usize,
pub passed: usize,
pub failed: usize,
pub skipped: usize,
pub errored: usize,
pub duration_ms: u128,
pub cases: Vec<CaseResult>,
}Expand description
A full run: metadata plus every case result.
Fields§
§run_id: StringUnique run identifier (<epoch>-<short-commit>).
timestamp_epoch: u64Run start time (seconds since the Unix epoch).
commit: StringGit commit the server was built from.
server_version: StringServer version string.
host: StringHost the run executed against.
total: usizeTotal cases in the run.
passed: usizeCases that passed.
failed: usizeCases that failed an assertion.
skipped: usizeCases skipped (precondition unmet).
errored: usizeCases that aborted unexpectedly.
duration_ms: u128Total wall-clock duration in milliseconds.
cases: Vec<CaseResult>Every case result in the run.
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for RunReport
impl<'de> Deserialize<'de> for RunReport
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
Auto Trait Implementations§
impl Freeze for RunReport
impl RefUnwindSafe for RunReport
impl Send for RunReport
impl Sync for RunReport
impl Unpin for RunReport
impl UnsafeUnpin for RunReport
impl UnwindSafe for RunReport
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