Struct nix_compat::nar::reader::FileReader
source · pub struct FileReader<'a, 'r> {
reader: ArchiveReader<'a, 'r>,
len: u64,
pad: u8,
}
Expand description
File contents, readable through the Read trait.
It comes with some caveats:
- You must always read the entire file, unless you intend to abandon the entire archive reader.
- You must abandon the entire archive reader upon the first error.
It’s fine to read exactly reader.len()
bytes without ever seeing an explicit EOF.
Fields§
§reader: ArchiveReader<'a, 'r>
§len: u64
§pad: u8
Truncated original file length for padding computation. We only care about the 3 least significant bits; semantically, this is a u3.
Implementations§
source§impl<'a, 'r> FileReader<'a, 'r>
impl<'a, 'r> FileReader<'a, 'r>
sourcefn new(reader: ArchiveReader<'a, 'r>, len: u64) -> Result<Self>
fn new(reader: ArchiveReader<'a, 'r>, len: u64) -> Result<Self>
Instantiate a new reader, starting after wire::TOK_REG or wire::TOK_EXE. We handle the terminating wire::TOK_PAR on semantic EOF.
pub fn is_empty(&self) -> bool
pub fn len(&self) -> u64
source§impl FileReader<'_, '_>
impl FileReader<'_, '_>
sourcepub fn fill_buf(&mut self) -> Result<&[u8]>
pub fn fill_buf(&mut self) -> Result<&[u8]>
Equivalent to BufRead::fill_buf
We can’t directly implement BufRead, because FileReader::consume needs to perform fallible I/O.
Trait Implementations§
source§impl Read for FileReader<'_, '_>
impl Read for FileReader<'_, '_>
source§fn read(&mut self, buf: &mut [u8]) -> Result<usize>
fn read(&mut self, buf: &mut [u8]) -> Result<usize>
Pull some bytes from this source into the specified buffer, returning
how many bytes were read. Read more
1.36.0 · source§fn read_vectored(&mut self, bufs: &mut [IoSliceMut<'_>]) -> Result<usize, Error>
fn read_vectored(&mut self, bufs: &mut [IoSliceMut<'_>]) -> Result<usize, Error>
Like
read
, except that it reads into a slice of buffers. Read moresource§fn is_read_vectored(&self) -> bool
fn is_read_vectored(&self) -> bool
🔬This is a nightly-only experimental API. (
can_vector
)1.0.0 · source§fn read_to_end(&mut self, buf: &mut Vec<u8>) -> Result<usize, Error>
fn read_to_end(&mut self, buf: &mut Vec<u8>) -> Result<usize, Error>
Read all bytes until EOF in this source, placing them into
buf
. Read more1.0.0 · source§fn read_to_string(&mut self, buf: &mut String) -> Result<usize, Error>
fn read_to_string(&mut self, buf: &mut String) -> Result<usize, Error>
Read all bytes until EOF in this source, appending them to
buf
. Read more1.6.0 · source§fn read_exact(&mut self, buf: &mut [u8]) -> Result<(), Error>
fn read_exact(&mut self, buf: &mut [u8]) -> Result<(), Error>
Read the exact number of bytes required to fill
buf
. Read moresource§fn read_buf(&mut self, buf: BorrowedCursor<'_>) -> Result<(), Error>
fn read_buf(&mut self, buf: BorrowedCursor<'_>) -> Result<(), Error>
🔬This is a nightly-only experimental API. (
read_buf
)Pull some bytes from this source into the specified buffer. Read more
source§fn read_buf_exact(&mut self, cursor: BorrowedCursor<'_>) -> Result<(), Error>
fn read_buf_exact(&mut self, cursor: BorrowedCursor<'_>) -> Result<(), Error>
🔬This is a nightly-only experimental API. (
read_buf
)Read the exact number of bytes required to fill
cursor
. Read more1.0.0 · source§fn by_ref(&mut self) -> &mut Selfwhere
Self: Sized,
fn by_ref(&mut self) -> &mut Selfwhere
Self: Sized,
Creates a “by reference” adaptor for this instance of
Read
. Read moreAuto Trait Implementations§
impl<'a, 'r> Freeze for FileReader<'a, 'r>
impl<'a, 'r> !RefUnwindSafe for FileReader<'a, 'r>
impl<'a, 'r> Send for FileReader<'a, 'r>
impl<'a, 'r> !Sync for FileReader<'a, 'r>
impl<'a, 'r> Unpin for FileReader<'a, 'r>
impl<'a, 'r> !UnwindSafe for FileReader<'a, 'r>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more