Skip to main content

Options

Struct Options 

Source
pub struct Options<'a, 's> {
    pub object_progress: Box<dyn DynNestedProgress>,
    pub size_progress: &'s mut dyn Progress,
    pub thread_limit: Option<usize>,
    pub should_interrupt: &'a AtomicBool,
    pub object_hash: Kind,
    pub alloc_limit_bytes: Option<usize>,
}
Expand description

Options for Tree::traverse().

Fields§

§object_progress: Box<dyn DynNestedProgress>

is a progress instance to track progress for each object in the traversal.

§size_progress: &'s mut dyn Progress

is a progress instance to track the overall progress.

§thread_limit: Option<usize>

If Some, only use the given number of threads. Otherwise, the number of threads to use will be selected based on the number of available logical cores.

§should_interrupt: &'a AtomicBool

Abort the operation if the value is true.

§object_hash: Kind

specifies what kind of hashes we expect to be stored in oid-delta entries, which is viable to decoding them with the correct size.

§alloc_limit_bytes: Option<usize>

If Some, rejects individual allocations above the given number of bytes while resolving decoded object and delta result buffers. Some(0) rejects all non-empty allocations.

Auto Trait Implementations§

§

impl<'a, 's> !RefUnwindSafe for Options<'a, 's>

§

impl<'a, 's> !UnwindSafe for Options<'a, 's>

§

impl<'a, 's> Freeze for Options<'a, 's>

§

impl<'a, 's> Send for Options<'a, 's>

§

impl<'a, 's> Sync for Options<'a, 's>

§

impl<'a, 's> Unpin for Options<'a, 's>

§

impl<'a, 's> UnsafeUnpin for Options<'a, 's>

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> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
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, <T as TryFrom<U>>::Error>

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.