aboutsummaryrefslogtreecommitdiff
path: root/src/zip/archive.rs
blob: 79e8ca1314744af8a804c9d764215b15aad6dd84 (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>> {}