zfs 0.1.0

Implementation of the ZFS file system.
Documentation
1
2
3
4
5
6
7
8
use super::block_ptr::BlockPtr;

#[repr(packed)]
pub struct ZilHeader {
    claim_txg: u64,
    replay_seq: u64,
    log: BlockPtr,
}