Skip to main content

Lookup

Trait Lookup 

Source
pub trait Lookup: Send + Sync {
    // Required method
    fn lookup<'life0, 'async_trait>(
        &'life0 self,
        request: Request,
    ) -> Pin<Box<dyn Future<Output = Result<Outcome>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
}
Expand description

Read-only provider lookup port for turning external identifiers into reviewable app evidence.

Required Methods§

Source

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

Resolves the request into source-grounded lookup evidence without editing provider records or contacting customers.

Implementors§