pub trait Intents: FeesManager {
// Required methods
fn execute_intents(&mut self, signed: Vec<MultiPayload>);
fn simulate_intents(&self, signed: Vec<MultiPayload>) -> SimulationOutput;
}
Required Methods§
fn execute_intents(&mut self, signed: Vec<MultiPayload>)
fn simulate_intents(&self, signed: Vec<MultiPayload>) -> SimulationOutput
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.