Trait state_machine_future::StateMachineFuture [] [src]

pub trait StateMachineFuture {
    type Future: Future;
}

A trait that links an enum with #[derive(StateMachineFuture)] to its generated type that implements Future.

Associated Types

The generated Future type for this state machine.

Implementors