pub struct ReconstructionResult {
pub region_id: OwnedRegionId,
pub size_bytes: u32,
pub deltas_applied: u32,
pub final_hash: u64,
}Expand description
Result of a reconstruction operation.
Fields§
§region_id: OwnedRegionIdThe region that was reconstructed.
size_bytes: u32Number of bytes in the reconstructed state.
deltas_applied: u32Number of deltas applied.
final_hash: u64Hash of the final reconstructed state.
Trait Implementations§
Source§impl Clone for ReconstructionResult
impl Clone for ReconstructionResult
Source§fn clone(&self) -> ReconstructionResult
fn clone(&self) -> ReconstructionResult
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 ReconstructionResult
Source§impl Debug for ReconstructionResult
impl Debug for ReconstructionResult
impl Eq for ReconstructionResult
Source§impl PartialEq for ReconstructionResult
impl PartialEq for ReconstructionResult
impl StructuralPartialEq for ReconstructionResult
Auto Trait Implementations§
impl Freeze for ReconstructionResult
impl RefUnwindSafe for ReconstructionResult
impl Send for ReconstructionResult
impl Sync for ReconstructionResult
impl Unpin for ReconstructionResult
impl UnsafeUnpin for ReconstructionResult
impl UnwindSafe for ReconstructionResult
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