pub trait RuntimeBinder {
// Required methods
fn to_runtime_type(&mut self, type: &Type) -> Result<Option<&str>, Error>;
fn get(&mut self, name: &str) -> Result<&str, Error>;
}
Expand description
Binder for mapping contract type system to target
programming language runtime type system.