From 60596d15d9ccb7fb2b1e171e39e85589cc60bf5e Mon Sep 17 00:00:00 2001 From: Brendan Molloy Date: Mon, 17 Apr 2017 15:53:10 +1000 Subject: [PATCH] Add data_start property to ZipFile --- src/read.rs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/read.rs b/src/read.rs index c5ea5397..a2a0c5e0 100644 --- a/src/read.rs +++ b/src/read.rs @@ -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> {