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

@ -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>;