From d25a0dd1c0e00c8d9a2dae538e47038f5e9a31e4 Mon Sep 17 00:00:00 2001 From: Matthias Beyer <mail@beyermatthias.de> Date: Tue, 29 Dec 2015 17:36:53 +0100 Subject: [PATCH] Add docs to FileIDType --- src/storage/file/id_type.rs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/storage/file/id_type.rs b/src/storage/file/id_type.rs index 474e12a5..b9532262 100644 --- a/src/storage/file/id_type.rs +++ b/src/storage/file/id_type.rs @@ -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, }