pub struct ConsistencyReport {
pub old_size: u64,
pub new_size: u64,
pub consistent: bool,
}Expand description
Result of a consistency check between cached and new checkpoints.
Fields§
§old_size: u64Tree size of the previously cached checkpoint (0 if none).
new_size: u64Tree size of the newly cached checkpoint.
consistent: boolWhether consistency was verified.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ConsistencyReport
impl RefUnwindSafe for ConsistencyReport
impl Send for ConsistencyReport
impl Sync for ConsistencyReport
impl Unpin for ConsistencyReport
impl UnsafeUnpin for ConsistencyReport
impl UnwindSafe for ConsistencyReport
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