pub struct CentralEntry {
pub name: String,
pub compressed_size: u32,
pub uncompressed_size: u32,
pub local_header_offset: u32,
}Fields§
§name: String§compressed_size: u32§uncompressed_size: u32§local_header_offset: u32Trait Implementations§
Source§impl Clone for CentralEntry
impl Clone for CentralEntry
Source§fn clone(&self) -> CentralEntry
fn clone(&self) -> CentralEntry
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 CentralEntry
impl Debug for CentralEntry
Source§impl PartialEq for CentralEntry
impl PartialEq for CentralEntry
Source§fn eq(&self, other: &CentralEntry) -> bool
fn eq(&self, other: &CentralEntry) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for CentralEntry
impl StructuralPartialEq for CentralEntry
Auto Trait Implementations§
impl Freeze for CentralEntry
impl RefUnwindSafe for CentralEntry
impl Send for CentralEntry
impl Sync for CentralEntry
impl Unpin for CentralEntry
impl UnsafeUnpin for CentralEntry
impl UnwindSafe for CentralEntry
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