1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
//! The builder-style API structures for defining your Finny FSM. The procedural macro parses
//! these method calls and generated the optimized implementation.

mod fsm;
mod state;
mod event;
mod sub;

pub use self::fsm::*;
pub use self::state::*;
pub use self::event::*;
pub use self::sub::*;

#[cfg(feature = "std")]
pub type FsmQueueMock<F> = crate::FsmEventQueueVec<F>;

#[cfg(not(feature = "std"))]
pub type FsmQueueMock<F> = crate::FsmEventQueueNull<F>;