Merge pull request #156 from matthiasbeyer/libimagstore/fix-private-intostoreid

Fix: Make IntoStoreId public
This commit is contained in:
Matthias Beyer 2016-01-29 19:11:03 +01:00
commit 33b6a89a02
1 changed files with 1 additions and 1 deletions

View File

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