pub struct Integrity {
pub merkle_root: ChunkHash,
pub chunk_count: u64,
pub total_raw: u64,
pub total_stored: u64,
}Expand description
Integrity section contents.
Fields§
§merkle_root: ChunkHashMerkle root over the chunk table’s hashes, in table order.
chunk_count: u64§total_raw: u64§total_stored: u64Trait Implementations§
Auto Trait Implementations§
impl Freeze for Integrity
impl RefUnwindSafe for Integrity
impl Send for Integrity
impl Sync for Integrity
impl Unpin for Integrity
impl UnsafeUnpin for Integrity
impl UnwindSafe for Integrity
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