pub trait DecidablePredicateInterface<Address> {
// Required method
fn decide_with_witness(
&self,
_inputs: Vec<Vec<u8>>,
_witness: Vec<Vec<u8>>,
) -> ExecResult<Address>;
}Required Methods§
fn decide_with_witness( &self, _inputs: Vec<Vec<u8>>, _witness: Vec<Vec<u8>>, ) -> ExecResult<Address>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".