Enum android_sparse::file::Chunk
[−]
[src]
pub enum Chunk { Raw { file: StdFile, offset: u64, num_blocks: u32, }, Fill { fill: [u8; 4], num_blocks: u32, }, DontCare { num_blocks: u32, }, Crc32 { crc: u32, }, }
Variants
Raw
Fields of Raw
file: StdFile | |
offset: u64 | |
num_blocks: u32 |
Fill
Fields of Fill
fill: [u8; 4] | |
num_blocks: u32 |
DontCare
Fields of DontCare
num_blocks: u32 |
Crc32
Fields of Crc32
crc: u32 |