pub trait TestInterfaceExt {
    // Required method
    fn apply_nud_flake_workaround<'life0, 'async_trait>(
        &'life0 self
    ) -> Pin<Box<dyn Future<Output = Result> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
}
Expand description

Helpers for netemul::TestInterface.

Required Methods§

source

fn apply_nud_flake_workaround<'life0, 'async_trait>( &'life0 self ) -> Pin<Box<dyn Future<Output = Result> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Calls crate::nud::apply_nud_flake_workaround for this interface.

Implementations on Foreign Types§

source§

impl<'a> TestInterfaceExt for TestInterface<'a>

source§

fn apply_nud_flake_workaround<'life0, 'async_trait>( &'life0 self ) -> Pin<Box<dyn Future<Output = Result> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Implementors§