pub trait Fixture: LoggingFixture {
    // Required method
    fn create_handles<'life0, 'async_trait>(
        &'life0 self,
        opt: SocketOpts
    ) -> Pin<Box<dyn Future<Output = (Socket, Socket)> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
}

Required Methods§

source

fn create_handles<'life0, 'async_trait>( &'life0 self, opt: SocketOpts ) -> Pin<Box<dyn Future<Output = (Socket, Socket)> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Implementors§