pub trait FetchRuntimeCode {
    // Required method
    fn fetch_runtime_code(&self) -> Option<Cow<'_, [u8]>>;
}
Expand description

Something that can fetch the runtime :code.

Required Methods§

fn fetch_runtime_code(&self) -> Option<Cow<'_, [u8]>>

Fetch the runtime :code.

If the :code could not be found/not available, None should be returned.

Implementations on Foreign Types§

§

impl<'a, B, H> FetchRuntimeCode for BackendRuntimeCode<'a, B, H>
where B: Backend<H>, H: Hasher,

§

fn fetch_runtime_code(&self) -> Option<Cow<'_, [u8]>>

Implementors§