Enum sp_trie::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, CE> Debug for Error<HO, CE> where
HO: Debug,
CE: Debug,
[src]
HO: Debug,
CE: Debug,
impl<HO, CE> Display for Error<HO, CE> where
HO: Debug,
CE: Error,
[src]
HO: Debug,
CE: Error,
impl<HO, CE> Eq for Error<HO, CE> where
HO: Eq,
CE: Eq,
[src]
HO: Eq,
CE: Eq,
impl<HO, CE> Error for Error<HO, CE> where
HO: Debug,
CE: 'static + Error,
[src]
HO: Debug,
CE: 'static + Error,
pub 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, CE> PartialEq<Error<HO, CE>> for Error<HO, CE> where
HO: PartialEq<HO>,
CE: PartialEq<CE>,
[src]
HO: PartialEq<HO>,
CE: PartialEq<CE>,
pub fn eq(&self, other: &Error<HO, CE>) -> bool
[src]
pub fn ne(&self, other: &Error<HO, CE>) -> bool
[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> AsFail for T where
T: Fail,
[src]
T: Fail,
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<E> Fail for E where
E: 'static + Error + Send + Sync,
[src]
E: 'static + Error + Send + Sync,
pub fn name(&self) -> Option<&str>
[src]
pub fn cause(&self) -> Option<&(dyn Fail + 'static)>
[src]
pub fn backtrace(&self) -> Option<&Backtrace>
[src]
pub fn context<D>(self, context: D) -> Context<D> where
D: Display + Send + Sync + 'static,
[src]
D: Display + Send + Sync + 'static,
pub fn compat(self) -> Compat<Self>
[src]
impl<T> From<T> for T
[src]
impl<T> Instrument for T
[src]
pub fn instrument(self, span: Span) -> Instrumented<Self>
[src]
pub fn in_current_span(self) -> Instrumented<Self>
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T, Outer> IsWrappedBy<Outer> for T where
T: From<Outer>,
Outer: AsRef<T> + AsMut<T> + From<T>,
[src]
T: From<Outer>,
Outer: AsRef<T> + AsMut<T> + From<T>,
pub fn from_ref(outer: &Outer) -> &T
[src]
Get a reference to the inner from the outer.
pub fn from_mut(outer: &mut Outer) -> &mut T
[src]
Get a mutable reference to the inner from the outer.
impl<T> MaybeDebug for T where
T: Debug,
[src]
T: Debug,
impl<T> MaybeDebug for T where
T: Debug,
[src]
T: Debug,
impl<T> MaybeRefUnwindSafe for T where
T: RefUnwindSafe,
[src]
T: RefUnwindSafe,
impl<T> Pointable for T
[src]
pub const ALIGN: usize
[src]
type Init = T
The type for initializers.
pub unsafe fn init(init: <T as Pointable>::Init) -> usize
[src]
pub unsafe fn deref<'a>(ptr: usize) -> &'a T
[src]
pub unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T
[src]
pub unsafe fn drop(ptr: usize)
[src]
impl<T> Same<T> for T
[src]
type Output = T
Should always be Self
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>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<S, T> UncheckedInto<T> for S where
T: UncheckedFrom<S>,
[src]
T: UncheckedFrom<S>,
pub fn unchecked_into(self) -> T
[src]
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
[src]
V: MultiLane<T>,