pub trait FetchRuntimeCode {
// Required method
fn fetch_runtime_code(&self) -> Option<Cow<'_, [u8]>>;
}Expand description
Something that can fetch the runtime code.
Required Methods§
Sourcefn fetch_runtime_code(&self) -> Option<Cow<'_, [u8]>>
fn fetch_runtime_code(&self) -> Option<Cow<'_, [u8]>>
Fetch the current runtime code.
If the code could not be found/not available, None should be returned.