pub trait Generatable {
// Required method
fn generate<C>(&self, context: &mut C) -> Result<(), Error>
where C: Context;
}Expand description
ABI data structure that can be generated into arbitrary programming language supported by Ethbind.
Ethbind provides Generatable implementations for types of crate ethbind-json
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.