pub trait SyncAction: Send + Sync {
    fn run(&self, state: &mut State) -> Result<ControlFlow, Error>;
}

Required Methods

Implementors