pub trait CheckoutContextProvider {
    type Context: CheckoutContext;
    fn new_context<'life0, 'async_trait>(
        &'life0 self
    ) -> Pin<Box<dyn Future<Output = Result<Self::Context, CheckoutError>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
; }

Associated Types

Required methods

Implementors