From 69bebfcfc0dbd7c53a71e3966d84d8420ee58b0e Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Fri, 29 Jan 2016 17:00:29 +0100 Subject: [PATCH] Fix: Make IntoStoreId public --- libimagstore/src/storeid.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libimagstore/src/storeid.rs b/libimagstore/src/storeid.rs index a8c72b01..fef79c9e 100644 --- a/libimagstore/src/storeid.rs +++ b/libimagstore/src/storeid.rs @@ -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; }