Struct git_pack::index::Entry [−][src]
Expand description
Represents an entry within a pack index file, effectively mapping object IDs to pack data file locations.
Fields
oid: ObjectIdThe ID of the object
pack_offset: u64The offset to the object’s header in the pack data file
crc32: Option<u32>The CRC32 hash over all bytes of the pack data entry.
This can be useful for direct copies of pack data entries from one pack to another with insurance there was no bit rot. Note: Only available in index version 2 or newer
Trait Implementations
fn 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
This method returns an ordering between self and other values if one exists. Read more
This method tests less than (for self and other) and is used by the < operator. Read more
This method tests less than or equal to (for self and other) and is used by the <=
operator. Read more
This method tests greater than (for self and other) and is used by the > operator. Read more
Auto Trait Implementations
impl RefUnwindSafe for Entry
impl UnwindSafe for Entry
Blanket Implementations
Mutably borrows from an owned value. Read more