Expand description
An representing an full- or delta-object within a pack
Fields
header: Header
The entry’s header
decompressed_size: u64
The decompressed size of the object in bytes
data_offset: Offset
absolute offset to compressed object data in the pack, just behind the entry’s header
Implementations
sourceimpl Entry
impl Entry
Decoding
sourceimpl Entry
impl Entry
Access
sourcepub fn base_pack_offset(&self, distance: u64) -> Offset
pub fn base_pack_offset(&self, distance: u64) -> Offset
Compute the pack offset to the base entry of the object represented by this entry.
sourcepub fn pack_offset(&self) -> Offset
pub fn pack_offset(&self) -> Offset
The pack offset at which this entry starts
sourcepub fn header_size(&self) -> usize
pub fn header_size(&self) -> usize
The amount of bytes used to describe this entry in the pack. The header starts at Self::pack_offset()
Trait Implementations
sourceimpl<'de> Deserialize<'de> for Entry
impl<'de> Deserialize<'de> for Entry
sourcefn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl Ord for Entry
impl Ord for Entry
sourceimpl PartialOrd<Entry> for Entry
impl PartialOrd<Entry> for Entry
sourcefn partial_cmp(&self, other: &Entry) -> Option<Ordering>
fn partial_cmp(&self, other: &Entry) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
impl Eq for Entry
impl StructuralEq for Entry
impl StructuralPartialEq for Entry
Auto Trait Implementations
impl RefUnwindSafe for Entry
impl Send for Entry
impl Sync for Entry
impl Unpin for Entry
impl UnwindSafe for Entry
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more