pub struct WriteMultiPackIndexOptions {
pub preferred_pack_idx: Option<u32>,
pub write_bitmap_placeholders: bool,
}Expand description
Options for writing a multi-pack index (extension of the simple writer).
Fields§
§preferred_pack_idx: Option<u32>When set, objects also present in other packs are taken from this pack
(pack_names index in the sorted name list).
write_bitmap_placeholders: boolWhen true, append RIDX + empty BTMP chunks so test-tool read-midx --bitmap succeeds.
Trait Implementations§
Source§impl Clone for WriteMultiPackIndexOptions
impl Clone for WriteMultiPackIndexOptions
Source§fn clone(&self) -> WriteMultiPackIndexOptions
fn clone(&self) -> WriteMultiPackIndexOptions
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 WriteMultiPackIndexOptions
impl Debug for WriteMultiPackIndexOptions
Source§impl Default for WriteMultiPackIndexOptions
impl Default for WriteMultiPackIndexOptions
Source§fn default() -> WriteMultiPackIndexOptions
fn default() -> WriteMultiPackIndexOptions
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for WriteMultiPackIndexOptions
impl RefUnwindSafe for WriteMultiPackIndexOptions
impl Send for WriteMultiPackIndexOptions
impl Sync for WriteMultiPackIndexOptions
impl Unpin for WriteMultiPackIndexOptions
impl UnsafeUnpin for WriteMultiPackIndexOptions
impl UnwindSafe for WriteMultiPackIndexOptions
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