Add crc32 accessor for ZipFile

This commit is contained in:
Edward Yang 2016-04-29 17:04:08 -05:00
parent d95c925ac2
commit 064b21b685

View file

@ -304,6 +304,10 @@ impl<'a> ZipFile<'a> {
pub fn last_modified(&self) -> ::time::Tm {
self.data.last_modified_time
}
/// Get the CRC32 hash of the original file
pub fn crc32(&self) -> u32 {
self.data.crc32
}
}
impl<'a> Read for ZipFile<'a> {