pub struct VerifyIntegrityResult {
pub valid: bool,
pub missing: Vec<Hash>,
pub corrupted: Vec<Hash>,
}Expand description
Result of strong tree integrity verification.
Fields§
§valid: bool§missing: Vec<Hash>§corrupted: Vec<Hash>Trait Implementations§
Source§impl Clone for VerifyIntegrityResult
impl Clone for VerifyIntegrityResult
Source§fn clone(&self) -> VerifyIntegrityResult
fn clone(&self) -> VerifyIntegrityResult
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 moreAuto Trait Implementations§
impl Freeze for VerifyIntegrityResult
impl RefUnwindSafe for VerifyIntegrityResult
impl Send for VerifyIntegrityResult
impl Sync for VerifyIntegrityResult
impl Unpin for VerifyIntegrityResult
impl UnsafeUnpin for VerifyIntegrityResult
impl UnwindSafe for VerifyIntegrityResult
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