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

Fields of Raw

Fields of Fill

Fields of DontCare

Fields of Crc32

Methods

impl Chunk
[src]

[src]

[src]

[src]

[src]

Trait Implementations

impl Debug for Chunk
[src]

[src]

Formats the value using the given formatter.