use crate::PhpMixed; use indexmap::IndexMap; #[derive(Debug)] pub struct RarEntry; impl RarEntry { pub fn extract(&self, _path: &str) -> bool { todo!() } } #[derive(Debug)] pub struct RarArchive; impl RarArchive { pub fn open(_file: &str) -> Option { todo!() } pub fn get_entries(&self) -> Option> { todo!() } pub fn close(&self) { todo!() } }