Enum git_pack::data::entry::Header

source ·
pub enum Header {
    Commit,
    Tree,
    Blob,
    Tag,
    RefDelta {
        base_id: ObjectId,
    },
    OfsDelta {
        base_distance: u64,
    },
}
Expand description

The header portion of a pack data entry, identifying the kind of stored object.

Variants§

§

Commit

The object is a commit

§

Tree

The object is a tree

§

Blob

The object is a blob

§

Tag

The object is a tag

§

RefDelta

Fields

§base_id: ObjectId

Describes a delta-object which needs to be applied to a base. The base object is identified by the base_id field which is found within the parent repository. Most commonly used for thin-packs when receiving pack files from the server to refer to objects that are not part of the pack but expected to be present in the receivers repository.

Note

This could also be an object within this pack if the LSB encoded offset would be larger than 20 bytes, which is unlikely to happen.

The naming is exactly the same as the canonical implementation uses, namely REF_DELTA.

§

OfsDelta

Fields

§base_distance: u64

Describes a delta-object present in this pack which acts as base for this object. The base object is measured as a distance from this objects pack offset, so that base_pack_offset = this_objects_pack_offset - base_distance

Note

The naming is exactly the same as the canonical implementation uses, namely OFS_DELTA.

Implementations§

Subtract distance from pack_offset safely without the chance for overflow or no-ops if distance is 0.

Convert the header’s object kind into git_object::Kind if possible

Convert this header’s object kind into the packs internal representation

Return’s true if this is a delta object, i.e. not a full object.

Return’s true if this is a base object, i.e. not a delta object.

Encode this header along the given decompressed_size_in_bytes into the out write stream for use within a data pack.

Returns the amount of bytes written to out. decompressed_size_in_bytes is the full size in bytes of the object that this header represents

The size of the header in bytes when serialized

Trait Implementations§

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more
Deserialize this value from the given Serde deserializer. Read more
Feeds this value into the given Hasher. Read more
Feeds a slice of this type into the given Hasher. Read more
This method returns an Ordering between self and other. Read more
Compares and returns the maximum of two values. Read more
Compares and returns the minimum of two values. Read more
Restrict a value to a certain interval. Read more
This method tests for self and other values to be equal, and is used by ==.
This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
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
This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more
Checks if this value is equivalent to the given key. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.