Skip to main content

LoadedPackBitmap

Struct LoadedPackBitmap 

Source
pub struct LoadedPackBitmap { /* private fields */ }
Expand description

A pack’s .bitmap loaded for consultation: oid <-> pack-position mappings, resolved (XOR-expanded) per-commit reachability bitsets, and the four object type bitmaps. Bit numbering follows pack order throughout.

Implementations§

Source§

impl LoadedPackBitmap

Source

pub fn object_count(&self) -> u32

Source

pub fn pack_position(&self, oid: &ObjectId) -> Option<u32>

Pack-order position of oid, when the object is in the bitmapped pack.

Source

pub fn oid_at(&self, position: u32) -> Option<&ObjectId>

Source

pub fn bitmap_for_commit(&self, oid: &ObjectId) -> Option<&Arc<Vec<u64>>>

The resolved reachability bitset stored for oid, when it was one of the writer’s selected commits.

Source

pub fn bitmapped_commits(&self) -> impl Iterator<Item = &ObjectId>

Oids of every commit with a stored bitmap entry (unordered).

Source

pub fn pseudo_merge_count(&self) -> usize

Source

pub fn pseudo_merge_words(&self, index: usize) -> Option<(&[u64], &[u64])>

Source

pub fn type_words(&self, object_type: ObjectType) -> &[u64]

The type bitmap for object_type (bit per pack position).

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

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

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = !

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, !>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.