pub trait ContractParams {
const OPERATION: &'static str;
// Required method
fn values(&self) -> Vec<(&'static str, String)>;
}Expand description
One operation’s parameters, in the shape the contract declares them.
Required Associated Constants§
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".