Add data_start property to ZipFile

This commit is contained in:
Brendan Molloy 2017-04-17 15:53:10 +10:00
parent 95f311fd3e
commit 60596d15d9

View file

@ -351,6 +351,11 @@ impl<'a> ZipFile<'a> {
pub fn crc32(&self) -> u32 {
self.data.crc32
}
/// Get the starting offset of the data of the compressed file
pub fn data_start(&self) -> u64 {
self.data.data_start
}
}
impl<'a> Read for ZipFile<'a> {