gix_pack::data

Type Alias EntryRange

source
pub type EntryRange = Range<Offset>;
Expand description

A slice into a pack file denoting a pack entry.

An entry can be decoded into an object.

Aliased Type§

struct EntryRange {
    pub start: u64,
    pub end: u64,
}

Fields§

§start: u64

The lower bound of the range (inclusive).

§end: u64

The upper bound of the range (exclusive).