pub struct IntegrityMsg {
pub total_bytes: u64,
pub completed_bytes: u64,
pub total_chunks: u32,
pub completed_chunks: u32,
pub chunk_size: u32,
}Expand description
Message data for integrity checking-related messages
Fields§
§total_bytes: u64The number of bytes in the WIM file that are covered by integrity checks
completed_bytes: u64The number of bytes that have been checksummed so far
total_chunks: u32The number of individually checksummed »chunks« the integrity-checked region is divided into
completed_chunks: u32The number of chunks that have been checksummed so far
chunk_size: u32The size of each individually checksummed “chunk” in the integrity-checked region
Trait Implementations§
Source§impl Clone for IntegrityMsg
impl Clone for IntegrityMsg
Source§fn clone(&self) -> IntegrityMsg
fn clone(&self) -> IntegrityMsg
Returns a duplicate of the value. Read more
1.0.0 · 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 IntegrityMsg
impl Debug for IntegrityMsg
Source§impl PartialEq for IntegrityMsg
impl PartialEq for IntegrityMsg
impl Copy for IntegrityMsg
impl Eq for IntegrityMsg
impl StructuralPartialEq for IntegrityMsg
Auto Trait Implementations§
impl Freeze for IntegrityMsg
impl RefUnwindSafe for IntegrityMsg
impl Send for IntegrityMsg
impl Sync for IntegrityMsg
impl Unpin for IntegrityMsg
impl UnwindSafe for IntegrityMsg
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