Add support to import escude archive

This commit is contained in:
2025-06-03 22:06:07 +08:00
parent 09d850256f
commit dead6a0b18
10 changed files with 586 additions and 38 deletions

View File

@@ -284,10 +284,10 @@ impl Script for EscudeBinList {
Ok(())
}
fn custom_import(
&self,
custom_filename: &str,
mut writer: Box<dyn WriteSeek>,
fn custom_import<'a>(
&'a self,
custom_filename: &'a str,
mut writer: Box<dyn WriteSeek + 'a>,
encoding: Encoding,
output_encoding: Encoding,
) -> Result<()> {