pub enum ChainProof {
Intact {
rows: u64,
},
Tampered {
first_bad_sequence_nr: u64,
},
}Expand description
Result of verifying a persistence id’s hash chain.
Variants§
Intact
Every stored row_hash matches a fresh recomputation.
Tampered
The chain diverges at first_bad_sequence_nr (the earliest row whose
recomputed hash or prev_hash link does not match what is stored).
Trait Implementations§
Source§impl Clone for ChainProof
impl Clone for ChainProof
Source§fn clone(&self) -> ChainProof
fn clone(&self) -> ChainProof
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 moreSource§impl Debug for ChainProof
impl Debug for ChainProof
Source§impl PartialEq for ChainProof
impl PartialEq for ChainProof
Source§fn eq(&self, other: &ChainProof) -> bool
fn eq(&self, other: &ChainProof) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for ChainProof
impl Eq for ChainProof
impl StructuralPartialEq for ChainProof
Auto Trait Implementations§
impl Freeze for ChainProof
impl RefUnwindSafe for ChainProof
impl Send for ChainProof
impl Sync for ChainProof
impl Unpin for ChainProof
impl UnsafeUnpin for ChainProof
impl UnwindSafe for ChainProof
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more