pub trait BundlePackager {
    fn generate<'life0, 'async_trait>(
        &'life0 self,
        path: PathBuf
    ) -> Pin<Box<dyn Future<Output = Result<()>> + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
; }

Required Methods

Implementors