pub struct Suite {
pub name: String,
pub state: String,
pub passed: i64,
pub failed: i64,
pub ignored: i64,
pub measured: i64,
pub total: i64,
pub tests: Vec<Test>,
}
Fields§
§name: String
§state: String
§passed: i64
§failed: i64
§ignored: i64
§measured: i64
§total: i64
§tests: Vec<Test>
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Suite
impl RefUnwindSafe for Suite
impl Send for Suite
impl Sync for Suite
impl Unpin for Suite
impl UnwindSafe for Suite
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