pub struct ArchiveIndexEntry {
pub path: String,
pub name: String,
pub file_data_size: u64,
pub kind: TarEntryKind,
pub mode: u32,
pub mtime: u64,
pub path_hash: [u8; 8],
pub tar_member_group_size: u64,
pub first_frame_index: u64,
pub frame_count: u32,
pub offset_in_first_frame_plaintext: u32,
pub layout: ArchiveIndexEntryLayout,
}Fields§
§path: String§name: String§file_data_size: u64§kind: TarEntryKind§mode: u32§mtime: u64§path_hash: [u8; 8]§tar_member_group_size: u64§first_frame_index: u64§frame_count: u32§offset_in_first_frame_plaintext: u32§layout: ArchiveIndexEntryLayoutTrait Implementations§
Source§impl Clone for ArchiveIndexEntry
impl Clone for ArchiveIndexEntry
Source§fn clone(&self) -> ArchiveIndexEntry
fn clone(&self) -> ArchiveIndexEntry
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 ArchiveIndexEntry
impl Debug for ArchiveIndexEntry
impl Eq for ArchiveIndexEntry
Source§impl PartialEq for ArchiveIndexEntry
impl PartialEq for ArchiveIndexEntry
Source§fn eq(&self, other: &ArchiveIndexEntry) -> bool
fn eq(&self, other: &ArchiveIndexEntry) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ArchiveIndexEntry
Auto Trait Implementations§
impl Freeze for ArchiveIndexEntry
impl RefUnwindSafe for ArchiveIndexEntry
impl Send for ArchiveIndexEntry
impl Sync for ArchiveIndexEntry
impl Unpin for ArchiveIndexEntry
impl UnsafeUnpin for ArchiveIndexEntry
impl UnwindSafe for ArchiveIndexEntry
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