[][src]Struct deqp_runner::ResultCounts

pub struct ResultCounts {
    pub pass: u32,
    pub fail: u32,
    pub skip: u32,
    pub crash: u32,
    pub warn: u32,
    pub flake: u32,
    pub missing: u32,
    pub expected_fail: u32,
    pub unexpected_pass: u32,
    pub timeout: u32,
    pub total: u32,
}

Fields

pass: u32fail: u32skip: u32crash: u32warn: u32flake: u32missing: u32expected_fail: u32unexpected_pass: u32timeout: u32total: u32

Implementations

impl ResultCounts[src]

pub fn new() -> ResultCounts[src]

pub fn increment(&mut self, s: RunnerStatus)[src]

pub fn get_count(&self, status: RunnerStatus) -> u32[src]

Trait Implementations

impl Debug for ResultCounts[src]

impl Default for ResultCounts[src]

impl Display for ResultCounts[src]

impl PartialEq<ResultCounts> for ResultCounts[src]

impl StructuralPartialEq for ResultCounts[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> ToString for T where
    T: Display + ?Sized
[src]

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>,