[][src]Enum tensile::Test

pub enum Test<Error> {
    Test {
        name: String,
        test: Box<dyn BoxTestable<Error = Error>>,
    },
    Group {
        name: String,
        tests: Vec<Test<Error>>,
    },
}

Variants

Test

Fields of Test

name: Stringtest: Box<dyn BoxTestable<Error = Error>>
Group

Fields of Group

name: Stringtests: Vec<Test<Error>>

Auto Trait Implementations

impl<Error> !RefUnwindSafe for Test<Error>

impl<Error> Send for Test<Error>

impl<Error> !Sync for Test<Error>

impl<Error> Unpin for Test<Error>

impl<Error> !UnwindSafe for Test<Error>

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