Trait profiler_get_symbols::FileContents[][src]

pub trait FileContents {
    fn len(&self) -> u64;
fn read_bytes_at(
        &self,
        offset: u64,
        size: u64
    ) -> FileAndPathHelperResult<&[u8]>;
fn read_bytes_at_until(
        &self,
        range: Range<u64>,
        delimiter: u8
    ) -> FileAndPathHelperResult<&[u8]>;
fn read_bytes_into(
        &self,
        buffer: &mut Vec<u8>,
        offset: u64,
        size: u64
    ) -> FileAndPathHelperResult<()>; fn is_empty(&self) -> bool { ... } }
Expand description

Provides synchronous access to the raw bytes of a file. This trait needs to be implemented by the consumer of this crate.

Required methods

Must return the length, in bytes, of this file.

Must return a slice of the file contents, or an error. The slice’s lifetime must be valid for the entire lifetime of this FileContents object. This restriction may be a bit cumbersome to satisfy; it’s a restriction that’s inherited from the object crate’s ReadRef trait.

TODO: document

Append size bytes to buffer, starting to read at offset in the file.

Provided methods

Whether the file is empty.

Implementors

Implementation for slices.