blob: 10c7e27d8af7113e7a940c20a041ad2e1e51dbd0 (
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
|
#[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!()
}
}
|