sm 0.9.0

💋 SM – a static State Machine library
Documentation
1
2
3
4
5
6
7
8
extern crate sm;

#[derive(Eq, PartialEq)]
struct HelloWorld;
impl sm::Machine for HelloWorld {}
//~^ ERROR `HelloWorld` doesn't implement `std::fmt::Debug`

fn main() {}