Enum trie_db::proof::VerifyError [−][src]
Errors that may occur during proof verification. Most of the errors types simply indicate that the proof is invalid with respect to the statement being verified, and the exact error type can be used for debugging.
Variants
The statement being verified contains multiple key-value pairs with the same key. The parameter is the duplicated key.
The proof contains at least one extraneous node.
The proof contains at least one extraneous value which should have been omitted from the proof.
The proof contains at least one extraneous hash reference the should have been omitted.
The proof contains an invalid child reference that exceeds the hash length.
The proof indicates that an expected value was not found in the trie.
The proof is missing trie nodes required to verify.
The root hash computed from the proof is incorrect.
One of the proof nodes could not be decoded.
Trait Implementations
impl<HO: Debug, CE: Debug> Debug for Error<HO, CE>
[src]
impl<HO: Debug, CE: Error> Display for Error<HO, CE>
[src]
impl<HO: Eq, CE: Eq> Eq for Error<HO, CE>
[src]
impl<HO: Debug, CE: Error + 'static> Error for Error<HO, CE>
[src]
fn source(&self) -> Option<&(dyn Error + 'static)>
[src]
pub fn backtrace(&self) -> Option<&Backtrace>
[src]
pub fn description(&self) -> &str
1.0.0[src]
pub fn cause(&self) -> Option<&dyn Error>
1.0.0[src]
impl<HO: PartialEq, CE: PartialEq> PartialEq<Error<HO, CE>> for Error<HO, CE>
[src]
impl<HO, CE> StructuralEq for Error<HO, CE>
[src]
impl<HO, CE> StructuralPartialEq for Error<HO, CE>
[src]
Auto Trait Implementations
impl<HO, CE> RefUnwindSafe for Error<HO, CE> where
CE: RefUnwindSafe,
HO: RefUnwindSafe,
CE: RefUnwindSafe,
HO: RefUnwindSafe,
impl<HO, CE> Send for Error<HO, CE> where
CE: Send,
HO: Send,
CE: Send,
HO: Send,
impl<HO, CE> Sync for Error<HO, CE> where
CE: Sync,
HO: Sync,
CE: Sync,
HO: Sync,
impl<HO, CE> Unpin for Error<HO, CE> where
CE: Unpin,
HO: Unpin,
CE: Unpin,
HO: Unpin,
impl<HO, CE> UnwindSafe for Error<HO, CE> where
CE: UnwindSafe,
HO: UnwindSafe,
CE: UnwindSafe,
HO: UnwindSafe,
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut Tⓘ
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> MaybeDebug for T where
T: Debug,
[src]
T: Debug,
impl<T> ToString for T where
T: Display + ?Sized,
[src]
T: Display + ?Sized,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,