Merge pull request #109 from JDepooter/add_header_start
Add ZipFile::header_start
This commit is contained in:
commit
4e4bbef51b
1 changed files with 5 additions and 0 deletions
|
@ -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> {
|
||||||
|
|
Loading…
Add table
Reference in a new issue