pub struct EndOfCentralDirectoryRecord<'a> {
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: Cow<'a, [u8]>,
}
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: Cow<'a, [u8]>
.ZIP file comment
Implementations§
Source§impl EndOfCentralDirectoryRecord<'_>
impl EndOfCentralDirectoryRecord<'_>
Sourcepub fn to_owned(&self) -> EndOfCentralDirectoryRecord<'static>
pub fn to_owned(&self) -> EndOfCentralDirectoryRecord<'static>
Copy the structure and clone the original values.
This is always a deep copy.
Source§impl EndOfCentralDirectoryRecord<'_>
impl EndOfCentralDirectoryRecord<'_>
Sourcepub fn into_owned(self) -> EndOfCentralDirectoryRecord<'static>
pub fn into_owned(self) -> EndOfCentralDirectoryRecord<'static>
Copy the structure and clone the original values if it’s not owned.
This is always a deep copy of the structure.
Trait Implementations§
Source§impl<'a> Clone for EndOfCentralDirectoryRecord<'a>
impl<'a> Clone for EndOfCentralDirectoryRecord<'a>
Source§fn clone(&self) -> EndOfCentralDirectoryRecord<'a>
fn clone(&self) -> EndOfCentralDirectoryRecord<'a>
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<'a> Debug for EndOfCentralDirectoryRecord<'a>
impl<'a> Debug for EndOfCentralDirectoryRecord<'a>
Source§impl IntoOwned for EndOfCentralDirectoryRecord<'_>
impl IntoOwned for EndOfCentralDirectoryRecord<'_>
Source§type Owned = EndOfCentralDirectoryRecord<'static>
type Owned = EndOfCentralDirectoryRecord<'static>
The type after obtaining ownership, should be the same as before but with static lifetime.
Source§fn into_owned(self) -> Self::Owned
fn into_owned(self) -> Self::Owned
Copy the structure and clone the original values if it’s not owned. Read more
Source§impl ToOwned for EndOfCentralDirectoryRecord<'_>
impl ToOwned for EndOfCentralDirectoryRecord<'_>
Auto Trait Implementations§
impl<'a> Freeze for EndOfCentralDirectoryRecord<'a>
impl<'a> RefUnwindSafe for EndOfCentralDirectoryRecord<'a>
impl<'a> Send for EndOfCentralDirectoryRecord<'a>
impl<'a> Sync for EndOfCentralDirectoryRecord<'a>
impl<'a> Unpin for EndOfCentralDirectoryRecord<'a>
impl<'a> UnwindSafe for EndOfCentralDirectoryRecord<'a>
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