Skip to main content

NativeSolver

Trait NativeSolver 

Source
pub trait NativeSolver: Send + Sync {
    // Required method
    fn solve<'life0, 'life1, 'async_trait>(
        &'life0 self,
        ctx: &'life1 SolveContext,
    ) -> Pin<Box<dyn Future<Output = Result<PxCookieBundle, AppError>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait,
             'life1: 'async_trait;
}

Required Methods§

Source

fn solve<'life0, 'life1, 'async_trait>( &'life0 self, ctx: &'life1 SolveContext, ) -> Pin<Box<dyn Future<Output = Result<PxCookieBundle, AppError>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

Implementors§