entry.rs: Add documentation

This commit is contained in:
Matthias Beyer 2016-01-21 21:28:29 +01:00
parent 67ae39ab5b
commit 64ee182d63
1 changed files with 5 additions and 0 deletions

View File

@ -2,6 +2,11 @@ use header::EntryHeader;
use content::EntryContent;
use store::StoreId;
/**
* An Entry of the store
*
* Contains location, header and content part.
*/
#[derive(Debug, Clone)]
pub struct Entry {
location: StoreId,