[][src]Struct sp_inherents::MakeFatalError

pub struct MakeFatalError<E: Encode>(_);

Auxiliary to make any given error resolve to is_fatal_error() == true.

Trait Implementations

impl<E: Encode> Encode for MakeFatalError<E> where
    E: Encode,
    E: Encode
[src]

impl<E: Encode> EncodeLike<MakeFatalError<E>> for MakeFatalError<E> where
    E: Encode,
    E: Encode
[src]

impl<E: Encode> From<E> for MakeFatalError<E>[src]

impl<E: Encode> IsFatalError for MakeFatalError<E>[src]

Auto Trait Implementations

impl<E> RefUnwindSafe for MakeFatalError<E> where
    E: RefUnwindSafe

impl<E> Send for MakeFatalError<E> where
    E: Send

impl<E> Sync for MakeFatalError<E> where
    E: Sync

impl<E> Unpin for MakeFatalError<E> where
    E: Unpin

impl<E> UnwindSafe for MakeFatalError<E> where
    E: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T, X> Encode for X where
    T: Encode + ?Sized,
    X: WrapperTypeEncode<Target = T>, 
[src]

impl<'_, '_, T> EncodeLike<&'_ &'_ T> for T where
    T: Encode
[src]

impl<'_, T> EncodeLike<&'_ T> for T where
    T: Encode
[src]

impl<'_, T> EncodeLike<&'_ mut T> for T where
    T: Encode
[src]

impl<T> EncodeLike<Arc<T>> for T where
    T: Encode
[src]

impl<T> EncodeLike<Box<T>> for T where
    T: Encode
[src]

impl<T> EncodeLike<Rc<T>> for T where
    T: Encode
[src]

impl<T> From<!> for T[src]

impl<T> From<T> for T[src]

impl<S> FullEncode for S where
    S: Encode + EncodeLike<S>, 
[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, Outer> IsWrappedBy<Outer> for T where
    Outer: AsRef<T> + AsMut<T> + From<T>,
    T: From<Outer>, 
[src]

fn from_ref(outer: &Outer) -> &T[src]

Get a reference to the inner from the outer.

fn from_mut(outer: &mut Outer) -> &mut T[src]

Get a mutable reference to the inner from the outer.

impl<T> MaybeRefUnwindSafe for T where
    T: RefUnwindSafe

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<S, T> UncheckedInto<T> for S where
    T: UncheckedFrom<S>, 
[src]

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,