Merge branch 'feature/data-start' of https://github.com/bbqsrc/zip-rs

This commit is contained in:
Mathijs van de Nes 2017-04-28 12:43:03 +02:00
commit afb306d11d

View file

@ -372,6 +372,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> {