pub struct FrameEntry {
pub frame_index: u64,
pub envelope_index: u64,
pub offset_in_envelope: u32,
pub compressed_size: u32,
pub decompressed_size: u32,
pub flags: u32,
pub tar_stream_offset: u64,
}Fields§
§frame_index: u64§envelope_index: u64§offset_in_envelope: u32§compressed_size: u32§decompressed_size: u32§flags: u32§tar_stream_offset: u64Implementations§
Trait Implementations§
Source§impl Clone for FrameEntry
impl Clone for FrameEntry
Source§fn clone(&self) -> FrameEntry
fn clone(&self) -> FrameEntry
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 FrameEntry
impl Debug for FrameEntry
Source§impl PartialEq for FrameEntry
impl PartialEq for FrameEntry
Source§fn eq(&self, other: &FrameEntry) -> bool
fn eq(&self, other: &FrameEntry) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for FrameEntry
impl StructuralPartialEq for FrameEntry
Auto Trait Implementations§
impl Freeze for FrameEntry
impl RefUnwindSafe for FrameEntry
impl Send for FrameEntry
impl Sync for FrameEntry
impl Unpin for FrameEntry
impl UnsafeUnpin for FrameEntry
impl UnwindSafe for FrameEntry
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