pub trait SolParamsEncode<'a>: SolEncode<'a> + Sealed {
const SOL_NAME: &'static str = _;
// Required method
fn encode(&'a self) -> Vec<u8> ⓘ;
}
Expand description
Solidity ABI encode function parameters.
§Note
This trait is sealed and cannot be implemented for types outside ink_primitives
.
Provided Associated Constants§
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.