mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-04 13:27: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
|
@ -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