Trait parables_testing::abi::Constructor[][src]

pub trait Constructor {
    const ITEM: &'static str;
    const BIN: &'static str;
    const SOURCE_MAP: Option<&'static str>;
    const RUNTIME_BIN: Option<&'static str>;
    const RUNTIME_SOURCE_MAP: Option<&'static str>;
}

Associated Constants

Name of the constructor item, used for linking.

Access the code to deploy for this constructor.

Access the source map for the type this constructor is associated with.

Access the runtime code being deployed.

Access the runtime source map for the type this constructor is associated with.

Implementors