docs(lib): add links to main modules
This commit is contained in:
12
src/lib.rs
12
src/lib.rs
@@ -9,8 +9,9 @@
|
|||||||
//! is a low-level typesafe abstraction over raw HTTP, providing an elegant
|
//! is a low-level typesafe abstraction over raw HTTP, providing an elegant
|
||||||
//! layer over "stringly-typed" HTTP.
|
//! layer over "stringly-typed" HTTP.
|
||||||
//!
|
//!
|
||||||
//! Hyper offers both an HTTP/S client an HTTP server which can be used to drive
|
//! Hyper offers both a [Client](client/index.html) and a
|
||||||
//! complex web applications written entirely in Rust.
|
//! [Server](server/index.html) which can be used to drive complex web
|
||||||
|
//! applications written entirely in Rust.
|
||||||
//!
|
//!
|
||||||
//! ## Internal Design
|
//! ## Internal Design
|
||||||
//!
|
//!
|
||||||
@@ -20,8 +21,8 @@
|
|||||||
//!
|
//!
|
||||||
//! ### Common Functionality
|
//! ### Common Functionality
|
||||||
//!
|
//!
|
||||||
//! Functionality and code shared between the Server and Client implementations can
|
//! Functionality and code shared between the Server and Client implementations
|
||||||
//! be found in `src` directly - this includes `NetworkStream`s, `Method`s,
|
//! can be found in `src` directly - this includes `NetworkStream`s, `Method`s,
|
||||||
//! `StatusCode`, and so on.
|
//! `StatusCode`, and so on.
|
||||||
//!
|
//!
|
||||||
//! #### Methods
|
//! #### Methods
|
||||||
@@ -38,7 +39,8 @@
|
|||||||
//!
|
//!
|
||||||
//! #### Headers
|
//! #### Headers
|
||||||
//!
|
//!
|
||||||
//! Hyper's header representation is likely the most complex API exposed by Hyper.
|
//! Hyper's [header](header/index.html) representation is likely the most
|
||||||
|
//! complex API exposed by Hyper.
|
||||||
//!
|
//!
|
||||||
//! Hyper's headers are an abstraction over an internal `HashMap` and provides a
|
//! Hyper's headers are an abstraction over an internal `HashMap` and provides a
|
||||||
//! typesafe API for interacting with headers that does not rely on the use of
|
//! typesafe API for interacting with headers that does not rely on the use of
|
||||||
|
|||||||
Reference in New Issue
Block a user