diff --git a/src/types/path.rs b/src/types/path.rs index 9af5a0b9a..a37cb8f12 100644 --- a/src/types/path.rs +++ b/src/types/path.rs @@ -15,6 +15,8 @@ use crate::FromRequest; #[derive(PartialEq, Eq, PartialOrd, Ord)] /// Extract typed information from the request's path. /// +/// [**PathConfig**](struct.PathConfig.html) allows to configure extraction process. +/// /// ## Example /// /// ```rust diff --git a/src/types/query.rs b/src/types/query.rs index 696e10b94..a6c18d9be 100644 --- a/src/types/query.rs +++ b/src/types/query.rs @@ -19,6 +19,8 @@ use crate::request::HttpRequest; /// be decoded into any type which depends upon data ordering e.g. tuples or tuple-structs. /// Attempts to do so will *fail at runtime*. /// +/// [**QueryConfig**](struct.QueryConfig.html) allows to configure extraction process. +/// /// ## Example /// /// ```rust