libphantomfs 0.1.0

A low level library for reading and writing PhantomFS volumes.
Documentation
1
2
3
4
5
6
7
8
9
10
11
use bytemuck::{Zeroable, Pod};


#[derive(Copy, Clone, Debug, Hash, PartialEq, Eq, Zeroable, Pod)]
#[repr(C)]
pub struct Uuid{
    pub lo: u64,
    pub hi: u64,
}