pub struct Case {
pub name: String,
pub result: String,
pub suite: String,
pub desc: String,
pub reason: String,
pub raw_result: String,
pub start: i64,
pub end: i64,
pub files: Vec<String>,
pub params: HashMap<String, String>,
pub custom: HashMap<String, String>,
pub steps: Vec<Step>,
}Fields§
§name: String§result: String§suite: String§desc: String§reason: String§raw_result: String§start: i64§end: i64§files: Vec<String>§params: HashMap<String, String>§custom: HashMap<String, String>§steps: Vec<Step>Trait Implementations§
Auto Trait Implementations§
impl Freeze for Case
impl RefUnwindSafe for Case
impl Send for Case
impl Sync for Case
impl Unpin for Case
impl UnsafeUnpin for Case
impl UnwindSafe for Case
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