tape-client 0.1.1

Your data, permanently recorded — uncensorable, uneditable, and here for good.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
mod read;
mod write;

pub use read::*;
pub use write::*;

use num_enum::*;

#[repr(u8)]
#[derive(Clone, Copy, Debug, Eq, PartialEq, IntoPrimitive, TryFromPrimitive)]
pub enum TapeLayout {
    Raw        = 0,
    Compressed = 1,
}