blob: 8efce90ab13abe0525373b5a2f6b0141e7863e63 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
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<Self> {
todo!()
}
pub fn get_entries(&self) -> Option<Vec<RarEntry>> {
todo!()
}
pub fn close(&self) {
todo!()
}
}
|