velto 1.9.0

Velto: expressive, async-native, and grounded Rust framework
Documentation
1
2
3
4
5
pub use async_tiny::{Header, Request, Response};

/// A route handler takes a reference to an async_tiny::Request
/// and returns an async_tiny::Response.
pub type Handler = Box<dyn Fn(&Request) -> Response + Send + Sync>;