Skip to main content

BundleFsReader

Trait BundleFsReader 

Source
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§

Source

fn list_bundle(&self, bundle_file: &Path) -> Result<Vec<BundleEntry>>

Source

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".

Implementors§