[][src]Struct laboratory::SuiteResult

pub struct SuiteResult { /* fields omitted */ }

Implementations

impl SuiteResult[src]

pub fn new(name: &str) -> SuiteResult[src]

pub fn updated_from_suite(&mut self, child_result_option: Option<SuiteResult>)[src]

pub fn update_from_spec(&mut self, spec: SpecResult)[src]

pub fn get_passing(&self) -> u64[src]

pub fn get_failing(&self) -> u64[src]

pub fn get_ignored(&self) -> u64[src]

pub fn get_child_specs(&self) -> Vec<SpecResult>[src]

pub fn get_child_suites(&self) -> Vec<SuiteResult>[src]

pub fn get_name(&self) -> &str[src]

pub fn get_duration(&self) -> Duration[src]

pub fn set_duration(&mut self, duration: Duration)[src]

Trait Implementations

impl Clone for SuiteResult[src]

impl<'de> Deserialize<'de> for SuiteResult[src]

impl Serialize for SuiteResult[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.