Trait rustc_codegen_ssa::back::archive::ArchiveBuilder
source · pub trait ArchiveBuilder<'a> {
// Required methods
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;
}