identity_credential::sd_jwt_vc::resolver

Trait Resolver

Source
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.

Required Methods§

Source

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,

Fetch the resource of type [Resolver::Target] using input.

Implementors§