Crate pemmican [] [src]

Pemmican is a Web server library built on top of hyper for the Rust language.

Introductory documentation is at https://github.com/mikedilger/pemmican

Reexports

pub use error::Error;
pub use router::Router;
pub use plugins::Plugin;
pub use plugins::PluginData;

Modules

error
plugins
router

Structs

Config

Configuration settings for a Pemmican server instance

DynamicRouter

This is a dynamic router. You can modify routes at runtime.

Pemmican

A Pemmican server instance.

Shared

A Shared component within Pemmican, accessible to plugins

Type Definitions

Handler

Handler functions handle web requests by generating a response. Code within these functions should take care not to block or call functions which may block. Instead, they should return futures immediately.