pub(crate) trait PlatformAdapter {
// Required methods
fn inspect_path(path: &Path) -> Result<PathInfo>;
fn create_extraction_target_file(path: &Path) -> Result<File>;
}Required Methods§
fn inspect_path(path: &Path) -> Result<PathInfo>
fn create_extraction_target_file(path: &Path) -> Result<File>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.