pub struct MidxBtmpPackRange {
pub pack_id: u32,
pub bitmap_pos: u32,
pub bitmap_nr: u32,
}Expand description
One pack’s slice of the MIDX pseudo-bitmap namespace (BTMP chunk).
Fields§
§pack_id: u32Pack index in the MIDX pack-names list.
bitmap_pos: u32First bit index assigned to this pack (cumulative object order).
bitmap_nr: u32Number of objects in this pack (same as .idx entry count).
Trait Implementations§
Source§impl Clone for MidxBtmpPackRange
impl Clone for MidxBtmpPackRange
Source§fn clone(&self) -> MidxBtmpPackRange
fn clone(&self) -> MidxBtmpPackRange
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for MidxBtmpPackRange
impl Debug for MidxBtmpPackRange
impl Copy for MidxBtmpPackRange
Auto Trait Implementations§
impl Freeze for MidxBtmpPackRange
impl RefUnwindSafe for MidxBtmpPackRange
impl Send for MidxBtmpPackRange
impl Sync for MidxBtmpPackRange
impl Unpin for MidxBtmpPackRange
impl UnsafeUnpin for MidxBtmpPackRange
impl UnwindSafe for MidxBtmpPackRange
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more