Struct sp_metadata_ir::OuterEnumsIR
source · 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 decodesp_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,
impl<T: Clone + Form> Clone for OuterEnumsIR<T>where T::Type: Clone,
source§fn clone(&self) -> OuterEnumsIR<T>
fn clone(&self) -> OuterEnumsIR<T>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl<T: Form> Encode for OuterEnumsIR<T>where
T::Type: Encode,
impl<T: Form> Encode for OuterEnumsIR<T>where T::Type: Encode,
source§fn encode_to<__CodecOutputEdqy: Output + ?Sized>(
&self,
__codec_dest_edqy: &mut __CodecOutputEdqy
)
fn encode_to<__CodecOutputEdqy: Output + ?Sized>( &self, __codec_dest_edqy: &mut __CodecOutputEdqy )
Convert self to a slice and append it to the destination.
§fn using_encoded<R, F>(&self, f: F) -> Rwhere
F: FnOnce(&[u8]) -> R,
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
fn encoded_size(&self) -> usize
Calculates the encoded size. Read more
source§impl From<OuterEnumsIR<MetaForm>> for OuterEnums
impl From<OuterEnumsIR<MetaForm>> for OuterEnums
source§fn from(ir: OuterEnumsIR) -> Self
fn from(ir: OuterEnumsIR) -> Self
Converts to this type from the input type.
source§impl IntoPortable for OuterEnumsIR
impl IntoPortable for OuterEnumsIR
§type Output = OuterEnumsIR<PortableForm>
type Output = OuterEnumsIR<PortableForm>
The portable version of
Self
.source§fn into_portable(self, registry: &mut Registry) -> Self::Output
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,
impl<T: PartialEq + Form> PartialEq<OuterEnumsIR<T>> for OuterEnumsIR<T>where T::Type: PartialEq,
source§fn eq(&self, other: &OuterEnumsIR<T>) -> bool
fn eq(&self, other: &OuterEnumsIR<T>) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.