pub struct Options {
pub thread_limit: Option<usize>,
pub mode: Mode,
pub allow_thin_pack: bool,
pub chunk_size: usize,
pub version: Version,
}Expand description
Configuration options for the pack generation functions provided in this module.
Fields
thread_limit: Option<usize>The amount of threads to use at most when resolving the pack. If None, all logical cores are used.
mode: ModeThe algorithm to produce a pack
allow_thin_pack: boolIf set, the resulting back can have deltas that refer to an object which is not in the pack. This can happen if the initial counted objects do not contain an object that an existing packed delta refers to, for example, because it wasn’t part of the iteration, for instance when the iteration was performed on tree deltas or only a part of the commit graph. Please note that thin packs are not valid packs at rest, thus they are only valid for packs in transit.
If set to false, delta objects will be decompressed and recompressed as base objects.
chunk_size: usizeThe amount of objects per chunk or unit of work to be sent to threads for processing TODO: could this become the window size?
version: VersionThe pack data version to produce for each entry
Trait Implementations
sourceimpl<'de> Deserialize<'de> for Options
impl<'de> Deserialize<'de> for Options
sourcefn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
sourceimpl Ord for Options
impl Ord for Options
1.21.0 · sourcefn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
1.21.0 · sourcefn min(self, other: Self) -> Selfwhere
Self: Sized,
fn min(self, other: Self) -> Selfwhere
Self: Sized,
1.50.0 · sourcefn clamp(self, min: Self, max: Self) -> Selfwhere
Self: Sized + PartialOrd<Self>,
fn clamp(self, min: Self, max: Self) -> Selfwhere
Self: Sized + PartialOrd<Self>,
sourceimpl PartialOrd<Options> for Options
impl PartialOrd<Options> for Options
sourcefn partial_cmp(&self, other: &Options) -> Option<Ordering>
fn partial_cmp(&self, other: &Options) -> Option<Ordering>
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
self and other) and is used by the <=
operator. Read more