Struct frame_executive::Executive[][src]

pub struct Executive<System, Block, Context, UnsignedValidator, AllPallets, OnRuntimeUpgrade = ()>(_);
Expand description

Main entry point for certain runtime actions as e.g. execute_block.

Generic parameters:

  • System: Something that implements frame_system::Config
  • Block: The block type of the runtime
  • Context: The context that is used when checking an extrinsic.
  • UnsignedValidator: The unsigned transaction validator of the runtime.
  • AllPallets: Tuple that contains all modules. Will be used to call e.g. on_initialize.
  • OnRuntimeUpgrade: Custom logic that should be called after a runtime upgrade. Modules are already called by AllPallets. It will be called before all modules will be called.

Implementations

Execute all OnRuntimeUpgrade of this runtime, and return the aggregate weight.

Execute all OnRuntimeUpgrade of this runtime, including the pre and post migration checks.

This should only be used for testing.

Start the execution of a particular block.

Actually execute all transitions for block.

Finalize the block - it is up the caller to ensure that all header fields are valid except state-root.

Apply extrinsic outside of the block execution function.

This doesn’t attempt to validate anything regarding the block, but it builds a list of uxt hashes.

Check a given signed transaction for validity. This doesn’t execute any side-effects; it merely checks whether the transaction would panic if it were included or not.

Changes made to storage should be discarded.

Start an offchain worker and generate extrinsics.

Trait Implementations

Execute the given block. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Convert from a value of T into an equivalent instance of Option<Self>. Read more

Consume self to return Some equivalent value of Option<T>. Read more

Convert Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can then be further downcast into Box<ConcreteType> where ConcreteType implements Trait. Read more

Convert Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be further downcast into Rc<ConcreteType> where ConcreteType implements Trait. Read more

Convert &Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot generate &Any’s vtable from &Trait’s. Read more

Convert &mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot generate &mut Any’s vtable from &mut Trait’s. Read more

Convert Arc<Trait> (where Trait: Downcast) to Arc<Any>. Arc<Any> can then be further downcast into Arc<ConcreteType> where ConcreteType implements Trait. Read more

Performs the conversion.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Performs the conversion.

Cast reference.

Cast reference.

Cast mutable reference.

Cast mutable reference.

Get a reference to the inner from the outer.

Get a mutable reference to the inner from the outer.

Should always be Self

Convert from a value of T into an equivalent instance of Self. Read more

Consume self to return an equivalent value of T. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The counterpart to unchecked_from.

Consume self to return an equivalent value of T.