Module command

Module command 

Source
Expand description

Command type for side effects.

Commands represent IO operations that produce messages when complete. They are the only way to perform side effects in the Elm Architecture.

Structs§

Cmd
A command representing an IO operation that produces a message.

Functions§

batch
Batch multiple commands to run concurrently.
none
Create a no-op command.
quit
Create a command to quit the program.
run_process
Run an external process, suspending the TUI.
sequence
Sequence commands to run in order.
tick
Create a tick command that fires after a duration.