pub struct RunTestFailure {
pub id: Option<String>,
pub name: Option<String>,
pub method_name: Option<String>,
pub namespace: Option<String>,
pub message: Option<String>,
pub stack_trace: Option<String>,
pub time: f64,
pub see_all_data: bool,
}Fields§
§id: Option<String>§name: Option<String>§method_name: Option<String>§namespace: Option<String>§message: Option<String>§stack_trace: Option<String>§time: f64§see_all_data: boolTrait Implementations§
Source§impl Clone for RunTestFailure
impl Clone for RunTestFailure
Source§fn clone(&self) -> RunTestFailure
fn clone(&self) -> RunTestFailure
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 RunTestFailure
impl Debug for RunTestFailure
Source§impl<'de> Deserialize<'de> for RunTestFailure
impl<'de> Deserialize<'de> for RunTestFailure
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 RunTestFailure
impl RefUnwindSafe for RunTestFailure
impl Send for RunTestFailure
impl Sync for RunTestFailure
impl Unpin for RunTestFailure
impl UnsafeUnpin for RunTestFailure
impl UnwindSafe for RunTestFailure
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