zbox 0.2.1

Zbox is a zero-details, privacy-focused embeddable file system.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! content module document
//!

mod content;
mod chunk;
mod chunker;
mod content_map;
mod entry;
mod merkle_tree;
mod segment;
mod span;
mod store;

pub use self::chunk::ChunkMap;
pub use self::content::{Content, ContentRef, Reader as ContentReader};
pub use self::store::{Store, StoreRef, Writer};