Trait Intents

Source
pub trait Intents: FeesManager {
    // Required methods
    fn execute_intents(&mut self, signed: Vec<MultiPayload>);
    fn simulate_intents(&self, signed: Vec<MultiPayload>) -> SimulationOutput;
}

Required Methods§

Source

fn execute_intents(&mut self, signed: Vec<MultiPayload>)

Source

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.

Implementors§