Add missing inclusion of SingeUseLock type

This commit is contained in:
Julian Ganz 2016-01-16 15:08:01 +01:00
parent 43b6dbec3e
commit 6bb48f53f4
1 changed files with 1 additions and 0 deletions

View File

@ -3,6 +3,7 @@ use std::string;
pub use entry::Entry;
pub use error::StoreError;
pub use single_use_lock::SingleUseLock;
pub type Result<T> = RResult<T, StoreError>;
pub type LockedEntry = SingleUseLock<Entry>;