Struct test_to_vec::Suite [] [src]

pub struct Suite<'a, 'b, 'c, 'd, 'e, 'f> {
    pub name: &'a str,
    pub state: &'b str,
    pub passed: i64,
    pub failed: i64,
    pub failures: Option<Vec<Failure<'e, 'f>>>,
    pub ignored: i64,
    pub measured: i64,
    pub tests: Vec<Test<'c, 'd>>,
}

Fields

Trait Implementations

impl<'a, 'b, 'c, 'd, 'e, 'f> Debug for Suite<'a, 'b, 'c, 'd, 'e, 'f>
[src]

Formats the value using the given formatter.

impl<'a, 'b, 'c, 'd, 'e, 'f> PartialEq for Suite<'a, 'b, 'c, 'd, 'e, 'f>
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.