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
RawFields of Raw
file: StdFile | |
offset: u64 | |
num_blocks: u32 |
FillFields of Fill
fill: [u8; 4] | |
num_blocks: u32 |
DontCareFields of DontCare
num_blocks: u32 |
Crc32Fields of Crc32
crc: u32 |