pub struct OuterEnumsIR<T: Form = MetaForm> {
    pub call_enum_ty: T::Type,
    pub event_enum_ty: T::Type,
    pub error_enum_ty: T::Type,
}
Expand description

The type of the outer enums.

Fields§

§call_enum_ty: T::Type

The type of the outer RuntimeCall enum.

§event_enum_ty: T::Type

The type of the outer RuntimeEvent enum.

§error_enum_ty: T::Type

The module error type of the DispatchError::Module variant.

The Module variant will be 5 scale encoded bytes which are normally decoded into an { index: u8, error: [u8; 4] } struct. This type ID points to an enum type which instead interprets the first index byte as a pallet variant, and the remaining error bytes as the appropriate pallet::Error type. It is an equally valid way to decode the error bytes, and can be more informative.

Note

  • This type cannot be used directly to decode sp_runtime::DispatchError from the chain. It provides just the information needed to decode sp_runtime::DispatchError::Module.
  • Decoding the 5 error bytes into this type will not always lead to all of the bytes being consumed; many error types do not require all of the bytes to represent them fully.

Trait Implementations§

source§

impl<T: Clone + Form> Clone for OuterEnumsIR<T>where T::Type: Clone,

source§

fn clone(&self) -> OuterEnumsIR<T>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<T: Debug + Form> Debug for OuterEnumsIR<T>where T::Type: Debug,

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<T: Form> Encode for OuterEnumsIR<T>where T::Type: Encode,

source§

fn encode_to<__CodecOutputEdqy: Output + ?Sized>( &self, __codec_dest_edqy: &mut __CodecOutputEdqy )

Convert self to a slice and append it to the destination.
§

fn size_hint(&self) -> usize

If possible give a hint of expected size of the encoding. Read more
§

fn encode(&self) -> Vec<u8, Global>

Convert self to an owned vector.
§

fn using_encoded<R, F>(&self, f: F) -> Rwhere F: FnOnce(&[u8]) -> R,

Convert self to a slice and then invoke the given closure with it.
§

fn encoded_size(&self) -> usize

Calculates the encoded size. Read more
source§

impl From<OuterEnumsIR<MetaForm>> for OuterEnums

source§

fn from(ir: OuterEnumsIR) -> Self

Converts to this type from the input type.
source§

impl IntoPortable for OuterEnumsIR

§

type Output = OuterEnumsIR<PortableForm>

The portable version of Self.
source§

fn into_portable(self, registry: &mut Registry) -> Self::Output

Convert self to the portable form by using the registry for caching.
source§

impl<T: PartialEq + Form> PartialEq<OuterEnumsIR<T>> for OuterEnumsIR<T>where T::Type: PartialEq,

source§

fn eq(&self, other: &OuterEnumsIR<T>) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<T: Form> EncodeLike<OuterEnumsIR<T>> for OuterEnumsIR<T>where T::Type: Encode,

source§

impl<T: Eq + Form> Eq for OuterEnumsIR<T>where T::Type: Eq,

source§

impl<T: Form> StructuralEq for OuterEnumsIR<T>

source§

impl<T: Form> StructuralPartialEq for OuterEnumsIR<T>

Auto Trait Implementations§

§

impl<T> RefUnwindSafe for OuterEnumsIR<T>where <T as Form>::Type: RefUnwindSafe,

§

impl<T> Send for OuterEnumsIR<T>where <T as Form>::Type: Send,

§

impl<T> Sync for OuterEnumsIR<T>where <T as Form>::Type: Sync,

§

impl<T> Unpin for OuterEnumsIR<T>where <T as Form>::Type: Unpin,

§

impl<T> UnwindSafe for OuterEnumsIR<T>where <T as Form>::Type: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

const: unstable · source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
const: unstable · source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<T> EncodeLike<&&T> for Twhere T: Encode,

§

impl<T> EncodeLike<&T> for Twhere T: Encode,

§

impl<T> EncodeLike<&mut T> for Twhere T: Encode,

§

impl<T> EncodeLike<Arc<T>> for Twhere T: Encode,

§

impl<T> EncodeLike<Box<T, Global>> for Twhere T: Encode,

§

impl<'a, T> EncodeLike<Cow<'a, T>> for Twhere T: ToOwned + Encode,

§

impl<T> EncodeLike<Rc<T>> for Twhere T: Encode,

§

impl<S> FullEncode for Swhere S: Encode + EncodeLike<S>,

§

impl<T> JsonSchemaMaybe for T