pub trait BssResolver {
// Required method
fn resolve<'a, 'life0, 'async_trait, I, T, U>(
&'life0 self,
bsses: I,
) -> Pin<Box<dyn Future<Output = Result<Position, ResolverError>> + 'async_trait>>
where I: IntoIterator + 'async_trait,
I::Item: Borrow<(T, U)>,
T: Borrow<BssId> + 'async_trait,
U: Borrow<Bss> + 'async_trait,
Self: 'async_trait,
'a: 'async_trait,
'life0: 'async_trait;
}
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.