tower-web 0.3.7

Web framework with a focus on removing boilerplate
Documentation
1
2
3
4
5
6
/// Private trait to this crate to prevent traits from being implemented in
/// downstream crates.
pub trait Sealed {}

impl Sealed for () {}
impl<T, U> Sealed for (T, U) {}