mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-03 04:47:39 +03:00
Add ResourcePath impl for &T where T: ResourcePath
This commit is contained in:
parent
7dad057d8c
commit
d90a338930
4 changed files with 12 additions and 2 deletions
|
@ -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
|
||||
|
|
|
@ -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"]
|
||||
|
|
|
@ -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>;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue