pub struct TestRow {
pub suite: String,
pub name: String,
pub category: String,
pub status: String,
pub duration_ms: u64,
pub timestamp: String,
pub commit: String,
pub note: String,
}Expand description
A single test result row.
Fields§
§suite: String§name: String§category: String§status: String§duration_ms: u64§timestamp: String§commit: String§note: StringAuto Trait Implementations§
impl Freeze for TestRow
impl RefUnwindSafe for TestRow
impl Send for TestRow
impl Sync for TestRow
impl Unpin for TestRow
impl UnsafeUnpin for TestRow
impl UnwindSafe for TestRow
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