pub enum ProofError {
OriginMismatch,
HashMismatch {
seq: u64,
expected: u64,
got: u64,
},
MissingEvent(u64),
InvalidRange {
from_seq: u64,
to_seq: u64,
},
SpanTooLarge {
from_seq: u64,
to_seq: u64,
cap: u64,
},
}Expand description
Errors from proof verification.
Variants§
OriginMismatch
Origin hash doesn’t match the log.
HashMismatch
Hash at a given sequence doesn’t match.
Fields
MissingEvent(u64)
Event at the given sequence is missing from the local log.
InvalidRange
Proof has from_seq > to_seq — reversed bounds.
Fields
SpanTooLarge
Proof span exceeds MAX_PROOF_VERIFY_SPAN —
to_seq - from_seq is too large to walk safely.
Trait Implementations§
Source§impl Clone for ProofError
impl Clone for ProofError
Source§fn clone(&self) -> ProofError
fn clone(&self) -> ProofError
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 ProofError
impl Debug for ProofError
Source§impl Display for ProofError
impl Display for ProofError
Source§impl Error for ProofError
impl Error for ProofError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Source§impl PartialEq for ProofError
impl PartialEq for ProofError
Source§fn eq(&self, other: &ProofError) -> bool
fn eq(&self, other: &ProofError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for ProofError
impl StructuralPartialEq for ProofError
Auto Trait Implementations§
impl Freeze for ProofError
impl RefUnwindSafe for ProofError
impl Send for ProofError
impl Sync for ProofError
impl Unpin for ProofError
impl UnsafeUnpin for ProofError
impl UnwindSafe for ProofError
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§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.