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.