Crate iron [−] [src]
The main crate for Iron.
Overview
Iron is a high level web framework built in and for Rust, built on hyper. Iron is designed to take advantage of Rust's greatest features - it's excellent type system and its principled approach to ownership in both single threaded and multi threaded contexts.
Iron is highly concurrent and can scale horizontally on more machines behind a load balancer or by running more threads on a more powerful machine. Iron avoids the bottlenecks encountered in highly concurrent code by avoiding shared writes and locking in the core framework.
Hello World
extern crate iron; use iron::prelude::*; use iron::status; fn main() { Iron::new(|_: &mut Request| { Ok(Response::with((status::Ok, "Hello World!"))) }).http("localhost:3000").unwrap(); }
Design Philosophy
Iron is meant to be as extensible and pluggable as possible; Iron's core is concentrated and avoids unnecessary features by leaving them to middleware, plugins, and modifiers.
Middleware, Plugins, and Modifiers are the main ways to extend Iron with new functionality. Most extensions that would be provided by middleware in other web frameworks are instead addressed by the much simpler Modifier and Plugin systems.
Modifiers allow external code to manipulate Requests and Response in an ergonomic fashion, allowing third-party extensions to get the same treatment as modifiers defined in Iron itself. Plugins allow for lazily-evaluated, automatically cached extensions to Requests and Responses, perfect for parsing, accessing, and otherwise lazily manipulating an http connection.
Middleware are only used when it is necessary to modify the control flow of a Request flow, hijack the entire handling of a Request, check an incoming Request, or to do final post-processing. This covers areas such as routing, mounting, static asset serving, final template rendering, authentication, and logging.
Iron comes with only basic modifiers for setting the status, body, and various headers, and the infrastructure for creating modifiers, plugins, and middleware. No plugins or middleware are bundled with Iron.
Reexports
pub use request::{Request}; |
pub use response::Response; |
pub use middleware::{BeforeMiddleware, AfterMiddleware, AroundMiddleware, Handler, Chain}; |
pub use error::IronError; |
Modules
error |
Iron's error type and associated utilities. |
headers |
Headers container, and common header fields. |
method |
HTTP Methods |
middleware |
Iron's Middleware and Handler System |
mime |
Re-exporting the mime crate, for convenience. |
modifier |
Re-exports from the Modifier crate. |
modifiers |
Defines a series of convenience modifiers for editing Responses |
prelude |
A module meant to be glob imported when using Iron. |
request |
Iron's HTTP Request representation and associated methods. |
response |
Iron's HTTP Response representation and associated methods. |
status |
Status Codes |
typemap |
Re-exports from the TypeMap crate. |
Macros
iexpect! |
Unwrap the given Option or return a Ok(Response::new()) with the given modifier. The default modifier is status::BadRequest. |
itry! |
Like try!(), but wrapping the error value in |
Structs
Headers |
A map of header fields on requests and responses. |
Iron |
The primary entrance point to |
TypeMap |
A map keyed by types. |
Url |
HTTP/HTTPS URL type for Iron. |
Enums
Protocol |
Protocol used to serve content. Future versions of Iron may add new protocols to this enum. Thus you should not exhaustively match on its variants. |
Traits
Error |
An extension to std::error::Error which provides dynamic downcasting of errors for use in highly generic contexts. |
Plugin |
An interface for plugins that cache values between calls. |
Set |
A trait providing the set and set_mut methods for all types. |
Type Definitions
IronResult |
The Result alias used throughout Iron and in clients of Iron. |