aboutsummaryrefslogtreecommitdiff
path: root/src/zip/archive.rs
blob: 9a244fc88270d183735f7f27023b12b92d31c925 (plain)
1
2
3
4
5
6
7
8
9
10
use crate::{Archive, Zip};
use std::io::{Read, Seek, Write};

impl<IO: Read + Seek> Archive<Zip<IO>> {
    pub fn comment(&self) -> &String {
        self.driver.comment()
    }
}

impl<IO: Read + Write + Seek> Archive<Zip<IO>> {}