Remove From<PathBuf> for StoreId

This commit is contained in:
Matthias Beyer 2016-08-07 16:50:55 +02:00
parent cf84df3ce7
commit adf213bbc7

View file

@ -71,14 +71,6 @@ impl Display for StoreId {
}
impl From<PathBuf> for StoreId {
fn from(pb: PathBuf) -> StoreId {
StoreId(pb)
}
}
/// This Trait allows you to convert various representations to a single one
/// suitable for usage in the Store
pub trait IntoStoreId {