Remove AsRef<Path> for StoreId

This commit is contained in:
Matthias Beyer 2016-08-07 16:50:32 +02:00
parent 30a76d57f6
commit bcd917055d

View file

@ -87,14 +87,6 @@ impl From<String> for StoreId {
}
impl AsRef<Path> for StoreId {
fn as_ref(&self) -> &Path {
self.id.as_ref()
}
}
/// This Trait allows you to convert various representations to a single one
/// suitable for usage in the Store
pub trait IntoStoreId {