[][src]Crate flow_impl

flow_impl is a derive macro that inserts code to allow a flow "implementation" to be called when compiled to wasm32

Constants

DONT_RUN_AGAIN

Use DONT_RUN_AGAIN to indicate that a function should not be executed more times

RUN_AGAIN

Use RUN_AGAIN to indicate that a function can be executed more times

Traits

Implementation

An implementation runs with an array of inputs and returns a value (or null) and a bool indicating if it should be ran again.

Type Definitions

RunAgain

Implementations should return a value of type RunAgain to indicate if it should be executed more times in the future.