pub struct TestResultEntryView {
pub name: String,
pub status: String,
pub duration_ms: u64,
pub timestamp: u64,
pub has_playwright: bool,
}Expand description
One stored test result (from a prior run).
Fields§
§name: String§status: String§duration_ms: u64§timestamp: u64§has_playwright: boolTrait Implementations§
Source§impl Clone for TestResultEntryView
impl Clone for TestResultEntryView
Source§fn clone(&self) -> TestResultEntryView
fn clone(&self) -> TestResultEntryView
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 TestResultEntryView
impl Debug for TestResultEntryView
Source§impl<'de> Deserialize<'de> for TestResultEntryView
impl<'de> Deserialize<'de> for TestResultEntryView
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 TestResultEntryView
impl RefUnwindSafe for TestResultEntryView
impl Send for TestResultEntryView
impl Sync for TestResultEntryView
impl Unpin for TestResultEntryView
impl UnsafeUnpin for TestResultEntryView
impl UnwindSafe for TestResultEntryView
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