effectful 0.2.1

Effect<A, E, R> (sync + async), context/layers, pipe — interpreter-style, no bundled executor
Documentation
//! Ex 025 — `req!` names the environment type for services.
use effectful::{Get, ThereHere, Service, ctx, effect, req, run_blocking};

#[derive(Clone, Copy, Debug, Default, PartialEq, Eq, Hash, Service)]
struct HostKey;
#[derive(Clone, Copy, Debug, Default, PartialEq, Eq, Hash, Service)]
struct PortKey;

type Env = req!(HostKey: &'static str | PortKey: u16);

fn main() {
  let read = effect!(|r: &mut Env| {
    let host = bind* Ok::<_, ()>(*Get::<HostKey>::get(r));
    let port = bind* Ok::<_, ()>(*r.get_path::<PortKey, ThereHere>());
    format!("{host}:{port}")
  });
  let env = ctx!(HostKey => "127.0.0.1", PortKey => 9000_u16);
  assert_eq!(
    run_blocking(read, env),
    Ok::<String, ()>("127.0.0.1:9000".to_owned())
  );
  println!("025_req_type ok");
}