pub trait FunctionExt {
// Required methods
fn abi_signature(&self) -> String;
fn selector(&self) -> H32;
}Expand description
Extension trait for ethabi::Function.
Required Methods§
Sourcefn abi_signature(&self) -> String
fn abi_signature(&self) -> String
Computes the method signature in the standard ABI format. This does not include the output types.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".