Add docs to FileIDType

This commit is contained in:
Matthias Beyer 2015-12-29 17:36:53 +01:00
parent d34143e516
commit d25a0dd1c0

View file

@ -9,6 +9,11 @@ use std::hash::Hash;
#[derive(Eq)]
// #[derive(Display)]
#[derive(Hash)]
/**
* File ID type
*
* Currently only UUID is available. Maybe this will be the only type available at all.
*/
pub enum FileIDType {
UUID,
}