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> Debug for Suite<'a, 'b, 'c, 'd, 'e>[src]
Formats the value using the given formatter.
impl<'a, 'b, 'c, 'd, 'e> PartialEq for Suite<'a, 'b, 'c, 'd, 'e>[src]
fn eq(&self, __arg_0: &Suite<'a, 'b, 'c, 'd, 'e>) -> bool
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &Suite<'a, 'b, 'c, 'd, 'e>) -> bool
This method tests for !=.