referrerpolicy=no-referrer-when-downgrade
sp_version

Trait GetNativeVersion

Source
pub trait GetNativeVersion {
    // Required method
    fn native_version(&self) -> &NativeVersion;
}
Expand description

Returns the version of the native runtime.

Required Methods§

Source

fn native_version(&self) -> &NativeVersion

Returns the version of the native runtime.

Implementations on Foreign Types§

Source§

impl<T: GetNativeVersion> GetNativeVersion for Arc<T>

Implementors§

impl<D: NativeExecutionDispatch> GetNativeVersion for NativeElseWasmExecutor<D>

impl<Block, B, E> GetNativeVersion for LocalCallExecutor<Block, B, E>
where B: Backend<Block>, E: CodeExecutor + GetNativeVersion + Clone + 'static, Block: BlockT,