Struct rc_zip::parse::EndOfCentralDirectoryRecord
source · pub struct EndOfCentralDirectoryRecord {
pub disk_nbr: u16,
pub dir_disk_nbr: u16,
pub dir_records_this_disk: u16,
pub directory_records: u16,
pub directory_size: u32,
pub directory_offset: u32,
pub comment: ZipString,
}
Expand description
4.3.16 End of central directory record:
Fields§
§disk_nbr: u16
number of this disk
dir_disk_nbr: u16
number of the disk with the start of the central directory
dir_records_this_disk: u16
total number of entries in the central directory on this disk
directory_records: u16
total number of entries in the central directory
directory_size: u32
size of the central directory
directory_offset: u32
offset of start of central directory with respect to the starting disk number
comment: ZipString
.ZIP file comment
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for EndOfCentralDirectoryRecord
impl Send for EndOfCentralDirectoryRecord
impl Sync for EndOfCentralDirectoryRecord
impl Unpin for EndOfCentralDirectoryRecord
impl UnwindSafe for EndOfCentralDirectoryRecord
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