pub struct EndOfCentralDirectory {
pub fixed: EndOfCentralDirectoryFixed,
pub zip_file_comment: Vec<u8>,
}
Expand description
End of central directory record
see 4.3.16
Fields§
§fixed: EndOfCentralDirectoryFixed
§zip_file_comment: Vec<u8>
Trait Implementations§
Source§impl Clone for EndOfCentralDirectory
impl Clone for EndOfCentralDirectory
Source§fn clone(&self) -> EndOfCentralDirectory
fn clone(&self) -> EndOfCentralDirectory
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for EndOfCentralDirectory
impl Debug for EndOfCentralDirectory
Source§impl Parse for EndOfCentralDirectory
impl Parse for EndOfCentralDirectory
Source§impl ParseExtend for EndOfCentralDirectory
impl ParseExtend for EndOfCentralDirectory
Source§impl PartialEq for EndOfCentralDirectory
impl PartialEq for EndOfCentralDirectory
Source§impl PartialRecord for EndOfCentralDirectory
impl PartialRecord for EndOfCentralDirectory
type Partial = EndOfCentralDirectoryFixed
fn get_partial(&self) -> &Self::Partial
Source§fn is_valid_sizes(&self) -> bool
fn is_valid_sizes(&self) -> bool
all dynamic records contain dynamic data and length information in the
fixed part. Verify if those 2 values are matching
impl StructuralPartialEq for EndOfCentralDirectory
Auto 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