pub trait Resolver<I: Sync, T> {
// Required method
fn resolve<'life0, 'life1, 'async_trait>(
&'life0 self,
input: &'life1 I,
) -> Pin<Box<dyn Future<Output = Result<T, Error>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait;
}
Expand description
A type capable of asynchronously producing values of type T
from inputs of type I
.