[][src]Trait exonum_rust_runtime::spec::Deploy

pub trait Deploy: Sealed {
    fn deploy(
        self,
        genesis: &mut GenesisConfigBuilder,
        rt: &mut RustRuntimeBuilder
    ); }

Denotes a data type that can be used as an argument to NodeBuilder::with().

This is a sealed trait: it is not meant to be implemented by the external data types.

Required methods

fn deploy(self, genesis: &mut GenesisConfigBuilder, rt: &mut RustRuntimeBuilder)

Modifies the genesis config and Rust runtime builders to deploy self.

Loading content...

Implementors

impl Deploy for ForeignSpec[src]

impl<T: ServiceFactory + MigrateData> Deploy for Spec<T, Migrating>[src]

impl<T: ServiceFactory + MigrateData> Deploy for JustFactory<T, Migrating>[src]

impl<T: ServiceFactory> Deploy for JustFactory<T, Simple>[src]

impl<T: ServiceFactory> Deploy for Spec<T, Simple>[src]

Loading content...