From d3bcf7778def4f26b5cabd92d1f28cd55e6099fd Mon Sep 17 00:00:00 2001 From: David Pedersen Date: Mon, 14 Feb 2022 15:32:56 +0100 Subject: [PATCH] fix missing docs link --- axum-extra/src/routing/typed.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/axum-extra/src/routing/typed.rs b/axum-extra/src/routing/typed.rs index 58acdf0e..0147c4ae 100644 --- a/axum-extra/src/routing/typed.rs +++ b/axum-extra/src/routing/typed.rs @@ -122,6 +122,7 @@ use super::sealed::Sealed; /// [`RouterExt::typed_post`]: super::RouterExt::typed_post /// [`Path`]: axum::extract::Path /// [`Display`]: std::fmt::Display +/// [`Deserialize`]: serde::Deserialize pub trait TypedPath: std::fmt::Display { /// The path with optional captures such as `/users/:id`. const PATH: &'static str;