pub trait Orchestrate<T> {
    // Required method
    fn execute(self, state: State<T>) -> State<T>;
}

Required Methods§

source

fn execute(self, state: State<T>) -> State<T>

Implementations on Foreign Types§

source§

impl<'a, T> Orchestrate<T> for Vec<&'a fn(_: State<T>) -> Result<State<T>, Error>>

source§

fn execute(self, state: State<T>) -> State<T>

Implementors§