#fsm #state #state-machine

archived macro no-std sm_macro

💋 SM – a static State Machine macro

3 releases (breaking)

0.9.0 Nov 9, 2019
0.7.0 Oct 4, 2018
0.6.1 Sep 18, 2018

#16 in #finite-state-machine

Download history 7979/week @ 2023-02-01 7677/week @ 2023-02-08 6260/week @ 2023-02-15 7301/week @ 2023-02-22 6152/week @ 2023-03-01 7802/week @ 2023-03-08 7826/week @ 2023-03-15 7597/week @ 2023-03-22 8919/week @ 2023-03-29 6398/week @ 2023-04-05 6523/week @ 2023-04-12 10198/week @ 2023-04-19 8078/week @ 2023-04-26 7664/week @ 2023-05-03 8311/week @ 2023-05-10 7411/week @ 2023-05-17

33,274 downloads per month
Used in sm

MIT/Apache

52KB
1.5K SLoC

SM aims to be a safe, fast and simple state machine library.

  • safe — Rust's type system, ownership model and exhaustive pattern matching prevent you from mis-using your state machines

  • fast — zero runtime overhead, the machine is 100% static, all validation happens at compile-time

  • simple — five traits, and one optional declarative macro, control-flow only, no business logic attached


You might be looking for:

Quick Example

extern crate sm;
use sm::sm;

sm! {
    Lock {
        InitialStates { Locked }

        TurnKey {
            Locked => Unlocked
            Unlocked => Locked
        }

        Break {
            Locked, Unlocked => Broken
        }
    }
}

fn main() {
    use Lock::*;
    let lock = Machine::new(Locked);
    let lock = lock.transition(TurnKey);

    assert_eq!(lock.state(), Unlocked);
    assert_eq!(lock.trigger().unwrap(), TurnKey);
}

Dependencies

~1.5MB
~42K SLoC