diff --git a/src/storage/file/id_type.rs b/src/storage/file/id_type.rs index d13c8bab..474e12a5 100644 --- a/src/storage/file/id_type.rs +++ b/src/storage/file/id_type.rs @@ -1,12 +1,14 @@ use std::convert::{From, Into}; use std::error::Error; use std::str::FromStr; +use std::hash::Hash; #[derive(Debug)] #[derive(Clone)] #[derive(PartialEq)] #[derive(Eq)] // #[derive(Display)] +#[derive(Hash)] pub enum FileIDType { UUID, }