pub struct PackInstallProgress {
pub received_bytes: u64,
pub indexed_objects: u64,
pub total_objects: u64,
}Expand description
Monotonic receipt and indexing counters for one staged pack installation.
Fields§
§received_bytes: u64Pack bytes received from the input so far.
indexed_objects: u64Objects fully inflated, resolved, and hashed so far.
total_objects: u64Total objects declared by the pack header once it is available.
Trait Implementations§
Source§impl Clone for PackInstallProgress
impl Clone for PackInstallProgress
Source§fn clone(&self) -> PackInstallProgress
fn clone(&self) -> PackInstallProgress
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for PackInstallProgress
Source§impl Debug for PackInstallProgress
impl Debug for PackInstallProgress
Source§impl Default for PackInstallProgress
impl Default for PackInstallProgress
Source§fn default() -> PackInstallProgress
fn default() -> PackInstallProgress
Returns the “default value” for a type. Read more
impl Eq for PackInstallProgress
Source§impl PartialEq for PackInstallProgress
impl PartialEq for PackInstallProgress
impl StructuralPartialEq for PackInstallProgress
Auto Trait Implementations§
impl Freeze for PackInstallProgress
impl RefUnwindSafe for PackInstallProgress
impl Send for PackInstallProgress
impl Sync for PackInstallProgress
impl Unpin for PackInstallProgress
impl UnsafeUnpin for PackInstallProgress
impl UnwindSafe for PackInstallProgress
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