pub struct EndOfCentralDirectory {
pub disk_number: u16,
pub disk_with_central_directory: u16,
pub number_of_entries_on_disk: u16,
pub number_of_entries: u16,
pub size_of_central_directory: u32,
pub offset_of_start_of_central_directory: u32,
pub zip_file_comment_length: u16,
}
Fields§
§disk_number: u16
§disk_with_central_directory: u16
§number_of_entries_on_disk: u16
§number_of_entries: u16
§size_of_central_directory: u32
§offset_of_start_of_central_directory: u32
§zip_file_comment_length: u16
Trait Implementations§
Source§impl Clone for EndOfCentralDirectory
impl Clone for EndOfCentralDirectory
Source§fn clone(&self) -> EndOfCentralDirectory
fn clone(&self) -> EndOfCentralDirectory
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl Freeze for EndOfCentralDirectory
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