pub struct CentralDirectoryEnd {
pub disk_number: u16,
pub disk_start: u16,
pub record_count_disk: u16,
pub record_count_total: u16,
pub directory_size: u32,
pub central_directory_offset: u32,
pub comment_length: u16,
pub comment: Option<String>,
}Fields§
§disk_number: u16§disk_start: u16§record_count_disk: u16§record_count_total: u16§directory_size: u32Size in bytes
central_directory_offset: u32Offset from the start of the archive
comment_length: u16§comment: Option<String>Implementations§
Trait Implementations§
Source§impl Debug for CentralDirectoryEnd
impl Debug for CentralDirectoryEnd
Source§impl PartialEq for CentralDirectoryEnd
impl PartialEq for CentralDirectoryEnd
impl Eq for CentralDirectoryEnd
impl StructuralPartialEq for CentralDirectoryEnd
Auto Trait Implementations§
impl Freeze for CentralDirectoryEnd
impl RefUnwindSafe for CentralDirectoryEnd
impl Send for CentralDirectoryEnd
impl Sync for CentralDirectoryEnd
impl Unpin for CentralDirectoryEnd
impl UnsafeUnpin for CentralDirectoryEnd
impl UnwindSafe for CentralDirectoryEnd
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