pub struct RerunOrFlaky {
pub timestamp: Option<String>,
pub time: f64,
pub rerun_type: String,
pub message: String,
pub text: String,
pub system_out: Option<String>,
pub system_err: Option<String>,
pub stack_trace: Option<String>,
pub kind: RerunOrFlakyKind,
}
Expand description
Value from a <flakyFailure />
, <rerunFailure />
, <flakyError />
, <rerunError />
tag
Fields§
§timestamp: Option<String>
The timestamp
attribute
time: f64
The time
attribute
rerun_type: String
The type
attribute
message: String
The message
attribute
text: String
Body of the tag
system_out: Option<String>
stdout output from the system-out
element nested within
system_err: Option<String>
stderr output from the system-err
element nested within
stack_trace: Option<String>
Stack trace of the flaky failure
kind: RerunOrFlakyKind
The kind of rerun
Trait Implementations§
Source§impl Clone for RerunOrFlaky
impl Clone for RerunOrFlaky
Source§fn clone(&self) -> RerunOrFlaky
fn clone(&self) -> RerunOrFlaky
Returns a duplicate of the value. Read more
1.0.0 · 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 RerunOrFlaky
impl Debug for RerunOrFlaky
Source§impl Default for RerunOrFlaky
impl Default for RerunOrFlaky
Source§fn default() -> RerunOrFlaky
fn default() -> RerunOrFlaky
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RerunOrFlaky
impl<'de> Deserialize<'de> for RerunOrFlaky
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 RerunOrFlaky
impl RefUnwindSafe for RerunOrFlaky
impl Send for RerunOrFlaky
impl Sync for RerunOrFlaky
impl Unpin for RerunOrFlaky
impl UnwindSafe for RerunOrFlaky
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