pub struct TestLogSummary {
pub test_name: String,
pub total_entries: usize,
pub duration_ms: u64,
pub counts_by_level: HashMap<LogLevel, usize>,
pub first_error: Option<String>,
pub last_error: Option<String>,
}Expand description
Summary of test logs
Fields§
§test_name: String§total_entries: usize§duration_ms: u64§counts_by_level: HashMap<LogLevel, usize>§first_error: Option<String>§last_error: Option<String>Trait Implementations§
Source§impl Clone for TestLogSummary
impl Clone for TestLogSummary
Source§fn clone(&self) -> TestLogSummary
fn clone(&self) -> TestLogSummary
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 TestLogSummary
impl Debug for TestLogSummary
Auto Trait Implementations§
impl Freeze for TestLogSummary
impl RefUnwindSafe for TestLogSummary
impl Send for TestLogSummary
impl Sync for TestLogSummary
impl Unpin for TestLogSummary
impl UnsafeUnpin for TestLogSummary
impl UnwindSafe for TestLogSummary
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