cataclysm 0.5.5

A simple http framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pub use self::callback::{Callback, CoreFn, LayerFn, Pipeline};
#[cfg(feature = "stream")]
pub use self::callback::{StreamCallback, HandlerFn};
pub(crate) mod callback;

pub use self::extractor::Extractor;
mod extractor;

/*
// The metafunctions module contains the implementation of an emulation of "variadic" functions in Rust.
//
// It works by using macros and generic parameters (which can be found in the `callback.rs` file) and
// also using traits (found in the `extractor.rs` file). The last important part is located in `http/method.rs`,
// as closures are used to wrap functions with multiple parameters. Simple explanations are found in said files.
*/