pub trait RuntimeBinder {
// Required methods
fn to_runtime_type(&mut self, type: &Type) -> Result<Option<&str>>;
fn get(&mut self, name: &str) -> Result<&str>;
}Expand description
Binder for mapping contract type system to target programming language runtime type system.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".