Enum body_image::BodyReader[][src]

pub enum BodyReader<'a> {
    Contiguous(Cursor<&'a [u8]>),
    Scattered(GatheringReader<'a, Bytes>),
    File(ReadPos),
    FileSlice(ReadSlice),
}

Provides a Read reference for a BodyImage in any state.

Variants

Cursor over a contiguous single RAM buffer, from Ram or MemMap. Also used for the empty case. Cursor::into_inner may be used for direct access to the memory byte slice.

GatheringReader providing Read over 2 or more scattered RAM buffers.

ReadPos providing instance independent, unbuffered Read and Seek for BodyImage FsRead state. Consider wrapping this in std::io::BufReader if performing many small reads.

ReadSlice providing instance independent, unbuffered Read and Seek for BodyImage FsRead state, limited to a range within an underlying file. Consider wrapping this in std::io::BufReader if performing many small reads.

Methods

impl<'a> BodyReader<'a>
[src]

Return the Read reference.

Auto Trait Implementations

impl<'a> Send for BodyReader<'a>

impl<'a> Sync for BodyReader<'a>