pub trait ConfigurationForSystemContract {
// Required method
fn configuration_in_platform_version(
&self,
version: &PlatformVersion,
) -> Result<DataContractConfig, ProtocolError>;
}Required Methods§
fn configuration_in_platform_version( &self, version: &PlatformVersion, ) -> Result<DataContractConfig, ProtocolError>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".