From 2334b0bc8acd392654eb78e2487a3175ce9074a9 Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Tue, 29 Dec 2015 17:37:42 +0100 Subject: [PATCH] Add docs to FileHash --- src/storage/file/hash.rs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/storage/file/hash.rs b/src/storage/file/hash.rs index a2f1f96a..4b364b25 100644 --- a/src/storage/file/hash.rs +++ b/src/storage/file/hash.rs @@ -10,6 +10,11 @@ use uuid::Uuid; #[derive(PartialEq)] #[derive(Eq)] #[derive(Hash)] +/** + * FileHash type + * + * Simple abstraction over String by now. + */ pub struct FileHash { hash: String, }