BundleProvider

Trait BundleProvider 

Source
pub trait BundleProvider: Send + Sync {
    // Required method
    fn bundle<'life0, 'async_trait>(
        &'life0 self,
        options: BundleOptions,
    ) -> Pin<Box<dyn Future<Output = Result<BuildResponse, AnyError>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
}

Required Methods§

Source

fn bundle<'life0, 'async_trait>( &'life0 self, options: BundleOptions, ) -> Pin<Box<dyn Future<Output = Result<BuildResponse, AnyError>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Implementations on Foreign Types§

Source§

impl BundleProvider for ()

Source§

fn bundle<'life0, 'async_trait>( &'life0 self, _options: BundleOptions, ) -> Pin<Box<dyn Future<Output = Result<BuildResponse, AnyError>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Implementors§