Struct deqp_runner::RunnerResults[][src]

pub struct RunnerResults {
    pub tests: HashMap<String, RunnerResult>,
    pub result_counts: ResultCounts,
    pub time: Instant,
}

Fields

tests: HashMap<String, RunnerResult>result_counts: ResultCountstime: Instant

Implementations

impl RunnerResults[src]

pub fn new() -> RunnerResults[src]

pub fn record_result(&mut self, result: RunnerResult)[src]

pub fn is_success(&self) -> bool[src]

pub fn write_results<W: Write>(&self, writer: &mut W) -> Result<()>[src]

pub fn write_failures<W>(&self, writer: &mut W) -> Result<()> where
    W: Write
[src]

pub fn write_junit_failures<W>(
    &self,
    writer: &mut W,
    options: &JunitGeneratorOptions
) -> Result<()> where
    W: Write
[src]

pub fn from_csv<R: Read>(r: &mut R) -> Result<RunnerResults> where
    R: Read
[src]

pub fn print_summary(&self, summary_limit: usize)[src]

Trait Implementations

impl Default for RunnerResults[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Pointable for T

type Init = T

The type for initializers.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,