Crate turbostate

Source
Expand description

turbostate is a library for building state machines in Rust

Structs§

DestructedMachine
Machine
Machine is a struct that encapsulates the state and shared data of the state machine, providing methods to advance the state based on events.

Enums§

Flow
Flow represents the possible outcomes of state transitions in the state machine.

Traits§

Engine
Engine is a trait that must be implemented on the state machine.