id_effect 0.2.0

Effect<A, E, R> (sync + async), context/layers, pipe — interpreter-style, no bundled executor
Documentation
1
2
3
4
5
6
7
8
9
//! Ex 029 — `service_key!` declares a nominal tag type.
use id_effect::service_key;

service_key!(pub struct ApiKey);

fn main() {
  let _ = std::any::TypeId::of::<ApiKey>();
  println!("029_service_key ok");
}