pub struct Suite<'a, 'b, 'c, 'd, 'e> {
pub name: &'a str,
pub state: &'b str,
pub passed: i64,
pub failed: i64,
pub ignored: i64,
pub measured: i64,
pub total: i64,
pub tests: Vec<Test<'c, 'd, 'e>>,
}
Fields§
§name: &'a str
§state: &'b str
§passed: i64
§failed: i64
§ignored: i64
§measured: i64
§total: i64
§tests: Vec<Test<'c, 'd, 'e>>
Trait Implementations§
impl<'a, 'b, 'c, 'd, 'e> StructuralPartialEq for Suite<'a, 'b, 'c, 'd, 'e>
Auto Trait Implementations§
impl<'a, 'b, 'c, 'd, 'e> Freeze for Suite<'a, 'b, 'c, 'd, 'e>
impl<'a, 'b, 'c, 'd, 'e> RefUnwindSafe for Suite<'a, 'b, 'c, 'd, 'e>
impl<'a, 'b, 'c, 'd, 'e> Send for Suite<'a, 'b, 'c, 'd, 'e>
impl<'a, 'b, 'c, 'd, 'e> Sync for Suite<'a, 'b, 'c, 'd, 'e>
impl<'a, 'b, 'c, 'd, 'e> Unpin for Suite<'a, 'b, 'c, 'd, 'e>
impl<'a, 'b, 'c, 'd, 'e> UnwindSafe for Suite<'a, 'b, 'c, 'd, 'e>
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