tower-util 0.3.1

Utilities for working with `Service`.
Documentation
1
2
3
4
5
6
7
8
9
10
//! `Stream<Item = Request>` + `Service<Request>` => `Stream<Item = Response>`.

mod common;
mod ordered;
mod unordered;

#[allow(unreachable_pub)] // https://github.com/rust-lang/rust/issues/57411
pub use self::{ordered::CallAll, unordered::CallAllUnordered};

type Error = Box<dyn std::error::Error + Send + Sync>;