aboutsummaryrefslogtreecommitdiff
path: root/src/archive.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/archive.rs')
-rw-r--r--src/archive.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/archive.rs b/src/archive.rs
index a422f9e..fe03a12 100644
--- a/src/archive.rs
+++ b/src/archive.rs
@@ -3,7 +3,7 @@ use crate::ArchiveResult;
3use std::io::{Read, Write}; 3use std::io::{Read, Write};
4 4
5pub struct Archive<D: Driver> { 5pub struct Archive<D: Driver> {
6 pub(crate) driver: D, 6 pub driver: D,
7} 7}
8 8
9impl<D: ArchiveRead> Archive<D> 9impl<D: ArchiveRead> Archive<D>