Add ZipFile::header_start

This function returns the offset of the local zip header for a ZipFile object
This commit is contained in:
Joel Depooter 2019-07-02 16:27:45 -07:00 committed by Joel Depooter
parent 5d0f198124
commit cd867ecdc2

View file

@ -508,6 +508,11 @@ impl<'a> ZipFile<'a> {
pub fn data_start(&self) -> u64 {
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> {