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