Fix: Make IntoStoreId public

This commit is contained in:
Matthias Beyer 2016-01-29 17:00:29 +01:00
parent 3b51328aa7
commit 69bebfcfc0

View file

@ -6,7 +6,7 @@ pub type StoreId = PathBuf;
/// This Trait allows you to convert various representations to a single one /// This Trait allows you to convert various representations to a single one
/// suitable for usage in the Store /// suitable for usage in the Store
trait IntoStoreId { pub trait IntoStoreId {
fn into_storeid(self) -> StoreId; fn into_storeid(self) -> StoreId;
} }