Enum sc_consensus_aura::Error
source · pub enum Error<B: BlockT> {
MultipleHeaders,
NoDigestFound,
HeaderUnsealed(B::Hash),
HeaderBadSeal(B::Hash),
SlotAuthorNotFound,
BadSignature(B::Hash),
Client(Error),
UnknownInherentError(InherentIdentifier),
Inherent(Error),
}
Expand description
Aura Errors
Variants§
MultipleHeaders
Multiple Aura pre-runtime headers
NoDigestFound
No Aura pre-runtime digest found
HeaderUnsealed(B::Hash)
Header is unsealed
HeaderBadSeal(B::Hash)
Header has a bad seal
SlotAuthorNotFound
Slot Author not found
BadSignature(B::Hash)
Bad signature
Client(Error)
Client Error
UnknownInherentError(InherentIdentifier)
Unknown inherent error for identifier
Inherent(Error)
Inherents Error
Trait Implementations§
source§impl<B: BlockT> Error for Error<B>where
Self: Debug + Display,
impl<B: BlockT> Error for Error<B>where Self: Debug + Display,
source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
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<B: BlockT> From<PreDigestLookupError> for Error<B>
impl<B: BlockT> From<PreDigestLookupError> for Error<B>
source§fn from(e: PreDigestLookupError) -> Self
fn from(e: PreDigestLookupError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl<B> !RefUnwindSafe for Error<B>
impl<B> Send for Error<B>
impl<B> Sync for Error<B>
impl<B> Unpin for Error<B>where <B as Block>::Hash: Unpin,
impl<B> !UnwindSafe for Error<B>
Blanket Implementations§
source§impl<T> CheckedConversion for T
impl<T> CheckedConversion for T
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, Outer> IsWrappedBy<Outer> for Twhere
Outer: AsRef<T> + AsMut<T> + From<T>,
T: From<Outer>,
impl<T, Outer> IsWrappedBy<Outer> for Twhere Outer: AsRef<T> + AsMut<T> + From<T>, T: From<Outer>,
§impl<T> Pointable for T
impl<T> Pointable for T
source§impl<T> SaturatedConversion for T
impl<T> SaturatedConversion for T
source§fn saturated_from<T>(t: T) -> Selfwhere
Self: UniqueSaturatedFrom<T>,
fn saturated_from<T>(t: T) -> Selfwhere Self: UniqueSaturatedFrom<T>,
source§fn saturated_into<T>(self) -> Twhere
Self: UniqueSaturatedInto<T>,
fn saturated_into<T>(self) -> Twhere Self: UniqueSaturatedInto<T>,
Consume self to return an equivalent value of
T
. Read moresource§impl<S, T> UncheckedInto<T> for Swhere
T: UncheckedFrom<S>,
impl<S, T> UncheckedInto<T> for Swhere T: UncheckedFrom<S>,
source§fn unchecked_into(self) -> T
fn unchecked_into(self) -> T
The counterpart to
unchecked_from
.source§impl<T, S> UniqueSaturatedInto<T> for Swhere
T: Bounded,
S: TryInto<T>,
impl<T, S> UniqueSaturatedInto<T> for Swhere T: Bounded, S: TryInto<T>,
source§fn unique_saturated_into(self) -> T
fn unique_saturated_into(self) -> T
Consume self to return an equivalent value of
T
.