[][src]Trait tensile::BoxTestable

pub trait BoxTestable: Send {
    type Error;
    fn test_box(self: Box<Self>) -> TestFuture<Self::Error>;
}

Associated Types

type Error

Loading content...

Required methods

fn test_box(self: Box<Self>) -> TestFuture<Self::Error>

Loading content...

Implementors

impl<T> BoxTestable for T where
    T: Testable
[src]

type Error = T::Error

Loading content...