Enum trie_db::proof::VerifyError[][src]

pub enum VerifyError<HO, CE> {
    DuplicateKey(Vec<u8>),
    ExtraneousNode,
    ExtraneousValue(Vec<u8>),
    ExtraneousHashReference(HO),
    InvalidChildReference(Vec<u8>),
    ValueMismatch(Vec<u8>),
    IncompleteProof,
    RootMismatch(HO),
    DecodeError(CE),
}
Expand description

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

DuplicateKey(Vec<u8>)

The statement being verified contains multiple key-value pairs with the same key. The parameter is the duplicated key.

Tuple Fields of DuplicateKey

0: Vec<u8>
ExtraneousNode

The proof contains at least one extraneous node.

ExtraneousValue(Vec<u8>)

The proof contains at least one extraneous value which should have been omitted from the proof.

Tuple Fields of ExtraneousValue

0: Vec<u8>
ExtraneousHashReference(HO)

The proof contains at least one extraneous hash reference the should have been omitted.

Tuple Fields of ExtraneousHashReference

0: HO
InvalidChildReference(Vec<u8>)

The proof contains an invalid child reference that exceeds the hash length.

Tuple Fields of InvalidChildReference

0: Vec<u8>
ValueMismatch(Vec<u8>)

The proof indicates that an expected value was not found in the trie.

Tuple Fields of ValueMismatch

0: Vec<u8>
IncompleteProof

The proof is missing trie nodes required to verify.

RootMismatch(HO)

The root hash computed from the proof is incorrect.

Tuple Fields of RootMismatch

0: HO
DecodeError(CE)

One of the proof nodes could not be decoded.

Tuple Fields of DecodeError

0: CE

Trait Implementations

Formats the value using the given formatter. Read more

Formats the value using the given formatter. Read more

The lower-level source of this error, if any. Read more

🔬 This is a nightly-only experimental API. (backtrace)

Returns a stack backtrace, if available, of where this error occurred. Read more

👎 Deprecated since 1.42.0:

use the Display impl or to_string()

👎 Deprecated since 1.33.0:

replaced by Error::source, which can support downcasting

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

Converts the given value to a String. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.