pub struct PackVerifyStats {
pub objects: Vec<PackVerifyStat>,
pub checksum: ObjectId,
}Expand description
Result of PackFile::verify_pack_stats: per-object stats in pack offset
order plus the pack’s trailing checksum.
Fields§
§objects: Vec<PackVerifyStat>§checksum: ObjectIdTrait Implementations§
Source§impl Clone for PackVerifyStats
impl Clone for PackVerifyStats
Source§fn clone(&self) -> PackVerifyStats
fn clone(&self) -> PackVerifyStats
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 moreSource§impl Debug for PackVerifyStats
impl Debug for PackVerifyStats
impl Eq for PackVerifyStats
Source§impl PartialEq for PackVerifyStats
impl PartialEq for PackVerifyStats
Source§fn eq(&self, other: &PackVerifyStats) -> bool
fn eq(&self, other: &PackVerifyStats) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PackVerifyStats
Auto Trait Implementations§
impl Freeze for PackVerifyStats
impl RefUnwindSafe for PackVerifyStats
impl Send for PackVerifyStats
impl Sync for PackVerifyStats
impl Unpin for PackVerifyStats
impl UnsafeUnpin for PackVerifyStats
impl UnwindSafe for PackVerifyStats
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