Add docs to FileHash

This commit is contained in:
Matthias Beyer 2015-12-29 17:37:42 +01:00
parent d25a0dd1c0
commit 2334b0bc8a

View file

@ -10,6 +10,11 @@ use uuid::Uuid;
#[derive(PartialEq)] #[derive(PartialEq)]
#[derive(Eq)] #[derive(Eq)]
#[derive(Hash)] #[derive(Hash)]
/**
* FileHash type
*
* Simple abstraction over String by now.
*/
pub struct FileHash { pub struct FileHash {
hash: String, hash: String,
} }