Struct rc_zip::parse::EndOfCentralDirectoryRecord
source · 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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)