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