Enum android_sparse::file::Chunk [] [src]

pub enum Chunk {
    Raw {
        buf: Vec<u8>,
    },
    RawFileBacked {
        file: StdFile,
        offset: u64,
        size: u32,
    },
    Fill {
        fill: [u8; 4],
        size: u32,
    },
    DontCare {
        size: u32,
    },
    Crc32 {
        crc: u32,
    },
}

Variants

Fields of Raw

Fields of RawFileBacked

Fields of Fill

Fields of DontCare

Fields of Crc32

Methods

impl Chunk
[src]

[src]

[src]

[src]

Trait Implementations

impl Debug for Chunk
[src]

[src]

Formats the value using the given formatter.