use crate::{Archive, Zip}; use std::io::{Read, Seek, Write}; impl Archive> { pub fn comment(&self) -> &String { self.driver.comment() } } impl Archive> {}