tidepool_effect/lib.rs
1//! Effect handling for Tidepool's freer-simple effect system.
2//!
3//! Provides `EffectHandler` and `DispatchEffect` traits with HList-based
4//! handler composition for dispatching algebraic effects at runtime.
5
6pub mod dispatch;
7pub mod error;
8pub mod machine;
9
10pub use dispatch::*;
11pub use error::*;
12pub use machine::*;