diff --git a/actix-web/CHANGES.md b/actix-web/CHANGES.md index 588320f4..6f9588b6 100644 --- a/actix-web/CHANGES.md +++ b/actix-web/CHANGES.md @@ -2,6 +2,8 @@ ## Unreleased +- Make contents of `web::Path` public. + ## 4.9.0 ### Added diff --git a/actix-web/src/types/path.rs b/actix-web/src/types/path.rs index cc87bb80..3a1fe8cf 100644 --- a/actix-web/src/types/path.rs +++ b/actix-web/src/types/path.rs @@ -54,7 +54,7 @@ use crate::{ /// } /// ``` #[derive(Debug, PartialEq, Eq, PartialOrd, Ord, Deref, DerefMut, AsRef, Display, From)] -pub struct Path(T); +pub struct Path(pub T); impl Path { /// Unwrap into inner `T` value.