Add ResourcePath impl for &T where T: ResourcePath

This commit is contained in:
Nikolay Kim 2020-04-17 13:39:07 +06:00
parent 7dad057d8c
commit d90a338930
4 changed files with 12 additions and 2 deletions

View file

@ -1,5 +1,9 @@
# Changes
## [0.3.4] - 2020-04-17
* Add ResourcePath impl for &T where T: ResourcePath
## [0.3.3] - 2020-04-11
* Fix `/` prefix match

View file

@ -1,6 +1,6 @@
[package]
name = "ntex-router"
version = "0.3.3"
version = "0.3.4"
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
description = "Path router"
keywords = ["ntex"]

View file

@ -45,6 +45,12 @@ impl ResourcePath for bytestring::ByteString {
}
}
impl<'a, T: ResourcePath> ResourcePath for &'a T {
fn path(&self) -> &str {
(*self).path()
}
}
/// Helper trait for type that could be converted to path pattern
pub trait IntoPattern {
fn patterns(&self) -> Vec<String>;

View file

@ -36,7 +36,7 @@ compress = ["flate2", "brotli2"]
cookie = ["coo-kie", "coo-kie/percent-encode"]
[dependencies]
ntex-codec = "0.1.1"
ntex-codec = "0.1.2"
ntex-rt = "0.1.1"
ntex-rt-macros = "0.1"
ntex-router = "0.3.3"