entry.rs: Add documentation
This commit is contained in:
parent
67ae39ab5b
commit
64ee182d63
1 changed files with 5 additions and 0 deletions
|
@ -2,6 +2,11 @@ use header::EntryHeader;
|
||||||
use content::EntryContent;
|
use content::EntryContent;
|
||||||
use store::StoreId;
|
use store::StoreId;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* An Entry of the store
|
||||||
|
*
|
||||||
|
* Contains location, header and content part.
|
||||||
|
*/
|
||||||
#[derive(Debug, Clone)]
|
#[derive(Debug, Clone)]
|
||||||
pub struct Entry {
|
pub struct Entry {
|
||||||
location: StoreId,
|
location: StoreId,
|
||||||
|
|
Loading…
Reference in a new issue