pub trait BundleFsReader {
// Required methods
fn list_bundle(&self, bundle_file: &Path) -> Result<Vec<BundleEntry>>;
fn extract_bundle(
&self,
bundle_file: &Path,
output_dir: &Path,
) -> Result<()>;
}Required Methods§
fn list_bundle(&self, bundle_file: &Path) -> Result<Vec<BundleEntry>>
fn extract_bundle(&self, bundle_file: &Path, output_dir: &Path) -> Result<()>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".