mirror of https://github.com/rwf2/Rocket.git
Fix some broken links in API documentation.
This commit is contained in:
parent
6844a189d7
commit
097fbd7df0
|
@ -1,7 +1,6 @@
|
|||
//! Gzip and Brotli response compression.
|
||||
//!
|
||||
//! See the [`Compression`](compression::Compression) and
|
||||
//! [`Compress`](compression::Compress) types for further details.
|
||||
//! See the [`Compression`] and [`Compress`] types for further details.
|
||||
//!
|
||||
//! # Enabling
|
||||
//!
|
||||
|
|
|
@ -394,7 +394,6 @@
|
|||
//!
|
||||
//! [`FromRequest`]: rocket::request::FromRequest
|
||||
//! [request guards]: rocket::request::FromRequest
|
||||
//! [`Poolable`]: databases::Poolable
|
||||
|
||||
pub extern crate r2d2;
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
//! Automatic JSON (de)serialization support.
|
||||
//!
|
||||
//! See the [`Json`](json::Json) type for further details.
|
||||
//! See the [`Json`] type for further details.
|
||||
//!
|
||||
//! # Enabling
|
||||
//!
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
//! Custom handler and options for static file serving.
|
||||
//!
|
||||
//! See the [`StaticFiles`](serve::StaticFiles) type for further details.
|
||||
//! See the [`StaticFiles`] type for further details.
|
||||
//!
|
||||
//! # Enabling
|
||||
//!
|
||||
|
|
|
@ -111,10 +111,6 @@
|
|||
//! template reloading is disabled to improve performance and cannot be enabled.
|
||||
//!
|
||||
//! [`Serialize`]: serde::Serialize
|
||||
//! [`Template`]: templates::Template
|
||||
//! [`Template::fairing()`]: templates::Template::fairing()
|
||||
//! [`Template::custom()`]: templates::Template::custom()
|
||||
//! [`Template::render()`]: templates::Template::render()
|
||||
|
||||
#[cfg(feature = "tera_templates")] pub extern crate tera;
|
||||
#[cfg(feature = "tera_templates")] mod tera_templates;
|
||||
|
|
|
@ -130,7 +130,7 @@ impl PartialEq for AcceptParams {
|
|||
/// [`Request::accept()`] method. The [`preferred()`] method can be used to
|
||||
/// retrieve the client's preferred media type.
|
||||
///
|
||||
/// [`Request::accept`]: rocket::Request::accept()
|
||||
/// [`Request::accept()`]: rocket::Request::accept()
|
||||
/// [`preferred()`]: Accept::preferred()
|
||||
///
|
||||
/// An `Accept` type with a single, common media type can be easily constructed
|
||||
|
|
|
@ -154,8 +154,8 @@
|
|||
//! ## Retrieving Configuration Parameters
|
||||
//!
|
||||
//! Configuration parameters for the currently active configuration environment
|
||||
//! can be retrieved via the [`Rocket::config()`] `Rocket` and `get_` methods on
|
||||
//! [`Config`] structure.
|
||||
//! can be retrieved via the [`Rocket::config()`](crate::Rocket::config()) method
|
||||
//! on `Rocket` and `get_` methods on [`Config`] structure.
|
||||
//!
|
||||
//! The retrivial of configuration parameters usually occurs at launch time via
|
||||
//! a [launch fairing](crate::fairing::Fairing). If information about the
|
||||
|
|
|
@ -8,8 +8,8 @@
|
|||
//! to perform an action once a Rocket application has launched.
|
||||
//!
|
||||
//! To learn more about writing a fairing, see the [`Fairing`] trait
|
||||
//! documentation. You can also use [`AdHoc`](fairing::AdHoc) to create a
|
||||
//! fairing on-the-fly from a closure or function.
|
||||
//! documentation. You can also use [`AdHoc`] to create a fairing on-the-fly
|
||||
//! from a closure or function.
|
||||
//!
|
||||
//! ## Attaching
|
||||
//!
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
//!
|
||||
//! This module contains a [`Client`] structure that is used to create
|
||||
//! [`LocalRequest`] structures that can be dispatched against a given
|
||||
//! [`Rocket`] instance. Usage is straightforward:
|
||||
//! [`Rocket`](crate::Rocket) instance. Usage is straightforward:
|
||||
//!
|
||||
//! 1. Construct a `Rocket` instance that represents the application.
|
||||
//!
|
||||
|
@ -94,9 +94,6 @@
|
|||
//! }
|
||||
//! }
|
||||
//! ```
|
||||
//!
|
||||
//! [`Client`]: local::Client
|
||||
//! [`LocalRequest`]: local::LocalRequest
|
||||
|
||||
mod request;
|
||||
mod client;
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
//! including [`FromRequest`](crate::request::FromRequest),
|
||||
//! [`FromData`](crate::data::FromData), and
|
||||
//! [`Responder`](crate::response::Responder). It is also the return type of
|
||||
//! request handlers via the [`Response`] type.
|
||||
//! request handlers via the [`Response`](crate::response::Response) type.
|
||||
//!
|
||||
//! # Success
|
||||
//!
|
||||
|
|
|
@ -41,7 +41,7 @@ use crate::http::Status;
|
|||
/// }
|
||||
/// ```
|
||||
///
|
||||
/// [`Origin`]: crate::::http::uri::Origin
|
||||
/// [`Origin`]: crate::http::uri::Origin
|
||||
/// [`uri!`]: ../macro.uri.html
|
||||
#[derive(Debug)]
|
||||
pub struct Redirect(Status, Option<Uri<'static>>);
|
||||
|
|
Loading…
Reference in New Issue