diff --git a/libimagstore/src/storeid.rs b/libimagstore/src/storeid.rs index fb1e74a1..12813973 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; }