Struct rc_zip::parse::EndOfCentralDirectory
source · pub struct EndOfCentralDirectory {
pub dir: Located<EndOfCentralDirectoryRecord>,
pub dir64: Option<Located<EndOfCentralDirectory64Record>>,
pub global_offset: i64,
}Expand description
Coalesces zip and zip64 “end of central directory” record info
Fields§
§dir: Located<EndOfCentralDirectoryRecord>The end of central directory record
dir64: Option<Located<EndOfCentralDirectory64Record>>The zip64 end of central directory record
global_offset: i64Zip files may be prepended by arbitrary data, this is how much data is at the beginning of the file that isn’t part of the zip
Auto Trait Implementations§
impl RefUnwindSafe for EndOfCentralDirectory
impl Send for EndOfCentralDirectory
impl Sync for EndOfCentralDirectory
impl Unpin for EndOfCentralDirectory
impl UnwindSafe for EndOfCentralDirectory
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more