From 2b4256baab0247923c6caf2af055919c15a4100c Mon Sep 17 00:00:00 2001 From: Nikolay Kim Date: Fri, 20 Dec 2019 17:49:05 +0600 Subject: [PATCH] add links to configs --- src/types/path.rs | 2 ++ src/types/query.rs | 2 ++ 2 files changed, 4 insertions(+) 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