jubako 0.4.0

The reference implementation of the Jubako container format
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use super::ContentAddress;
use crate::bases::*;

#[derive(PartialEq, Eq, Debug, Clone)]
pub enum Value {
    Content(ContentAddress),
    Unsigned(u64),
    Signed(i64),
    UnsignedWord(Word<u64>),
    SignedWord(Word<i64>),
    Array(SmallBytes),
}