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>
impl<T: Clone + Form> Clone for OuterEnumsIR<T>
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>
impl<T: Form> Encode for OuterEnumsIR<T>
source§fn size_hint(&self) -> usize
fn size_hint(&self) -> usize
If possible give a hint of expected size of the encoding. Read more
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.
source§fn using_encoded<R, F>(&self, f: F) -> R
fn using_encoded<R, F>(&self, f: F) -> R
Convert self to a slice and then invoke the given closure with it.
source§fn encoded_size(&self) -> usize
fn encoded_size(&self) -> usize
Calculates the encoded size. Read more
source§impl From<OuterEnumsIR> for OuterEnums
impl From<OuterEnumsIR> 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 for OuterEnumsIR<T>
impl<T: PartialEq + Form> PartialEq for OuterEnumsIR<T>
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 ==
.impl<T: Form> EncodeLike for OuterEnumsIR<T>
impl<T: Eq + Form> Eq for OuterEnumsIR<T>
impl<T: Form> StructuralPartialEq for OuterEnumsIR<T>
Auto Trait Implementations§
impl<T> Freeze for OuterEnumsIR<T>
impl<T> RefUnwindSafe for OuterEnumsIR<T>
impl<T> Send for OuterEnumsIR<T>
impl<T> Sync for OuterEnumsIR<T>
impl<T> Unpin for OuterEnumsIR<T>
impl<T> UnwindSafe for OuterEnumsIR<T>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more