pub trait ArchiveFileInfo: Clone {} pub trait FileDriver { type Io; type FileInfo: ArchiveFileInfo; fn info(&self) -> &Self::FileInfo; }