pub enum TestEventPayload {
Console {
level: String,
message: String,
},
Artifact {
name: String,
mime_type: String,
base64: String,
},
CaseStarted {
name: String,
full_name: String,
},
CaseFinished {
name: String,
full_name: String,
status: TestCaseStatus,
duration_ms: u64,
error: Option<TestRunError>,
},
}Variants§
Trait Implementations§
Source§impl Clone for TestEventPayload
impl Clone for TestEventPayload
Source§fn clone(&self) -> TestEventPayload
fn clone(&self) -> TestEventPayload
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 TestEventPayload
impl Debug for TestEventPayload
Source§impl<'de> Deserialize<'de> for TestEventPayload
impl<'de> Deserialize<'de> for TestEventPayload
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 TestEventPayload
impl RefUnwindSafe for TestEventPayload
impl Send for TestEventPayload
impl Sync for TestEventPayload
impl Unpin for TestEventPayload
impl UnsafeUnpin for TestEventPayload
impl UnwindSafe for TestEventPayload
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