referrerpolicy=no-referrer-when-downgrade

Trait RuntimeT

Source
pub trait RuntimeT<I: 'static>:
    Config
    + Config<I>
    + Config { }
Expand description

A wrapper for a runtime that the functions of this crate expect.

For example, this can be the Runtime type of the Polkadot runtime.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl<I: 'static, T: Config + Config<I> + Config> RuntimeT<I> for T