pub trait BuildModuleGenesisStorage<T, I>: Sized {
// Required method
fn build_module_genesis_storage(
&self,
storage: &mut Storage,
) -> Result<(), String>;
}
Expand description
Something that can build the genesis storage of a module.
Required Methods§
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.