Trait TestFn

pub trait TestFn {
    type Output;

    // Required method
    fn run_test(self, args: TestArgs) -> Self::Output;
}

Required Associated Types§

type Output

Required Methods§

fn run_test(self, args: TestArgs) -> Self::Output

Implementations on Foreign Types§

§

impl<DB, Fut> TestFn for fn(_: PoolConnection<DB>) -> Fut
where DB: TestSupport + Database, <DB as Database>::Connection: Migrate, &'c mut <DB as Database>::Connection: for<'c> Executor<'c, Database = DB>, Fut: Future, <Fut as Future>::Output: TestTermination,

§

type Output = <Fut as Future>::Output

§

fn run_test( self, args: TestArgs, ) -> <fn(_: PoolConnection<DB>) -> Fut as TestFn>::Output

§

impl<DB, Fut> TestFn for fn(_: PoolOptions<DB>, _: <<DB as Database>::Connection as Connection>::Options) -> Fut
where DB: Database + TestSupport, <DB as Database>::Connection: Migrate, &'c mut <DB as Database>::Connection: for<'c> Executor<'c, Database = DB>, Fut: Future, <Fut as Future>::Output: TestTermination,

§

type Output = <Fut as Future>::Output

§

fn run_test( self, args: TestArgs, ) -> <fn(_: PoolOptions<DB>, _: <<DB as Database>::Connection as Connection>::Options) -> Fut as TestFn>::Output

§

impl<DB, Fut> TestFn for fn(_: Pool<DB>) -> Fut
where DB: TestSupport + Database, <DB as Database>::Connection: Migrate, &'c mut <DB as Database>::Connection: for<'c> Executor<'c, Database = DB>, Fut: Future, <Fut as Future>::Output: TestTermination,

§

type Output = <Fut as Future>::Output

§

fn run_test(self, args: TestArgs) -> <fn(_: Pool<DB>) -> Fut as TestFn>::Output

§

impl<Fut> TestFn for fn() -> Fut
where Fut: Future,

§

type Output = <Fut as Future>::Output

§

fn run_test(self, args: TestArgs) -> <fn() -> Fut as TestFn>::Output

Implementors§