pub trait ArchiveBuilder<'a> {
    fn add_file(&mut self, path: &Path);
    fn add_archive(
        &mut self,
        archive: &Path,
        skip: Box<dyn FnMut(&str) -> bool + 'static>
    ) -> Result<()>; fn build(self: Box<Self>, output: &Path) -> bool; }

Required Methods

Implementors