Merge pull request #109 from JDepooter/add_header_start

Add ZipFile::header_start
This commit is contained in:
Ryan Levick 2020-06-15 14:49:08 +02:00 committed by GitHub
commit 4e4bbef51b
Signed by: DevComp
GPG key ID: 4AEE18F83AFDEB23

View file

@ -529,6 +529,11 @@ impl<'a> ZipFile<'a> {
pub fn data_start(&self) -> u64 { pub fn data_start(&self) -> u64 {
self.data.data_start self.data.data_start
} }
/// Get the starting offset of the zip header for this file
pub fn header_start(&self) -> u64 {
self.data.header_start
}
} }
impl<'a> Read for ZipFile<'a> { impl<'a> Read for ZipFile<'a> {