Trait wasmparser::SectionReader
source · [−]pub trait SectionReader {
type Item;
fn read(&mut self) -> Result<Self::Item>;
fn eof(&self) -> bool;
fn original_position(&self) -> usize;
fn range(&self) -> Range<usize>;
fn ensure_end(&self) -> Result<()> { ... }
}
Expand description
A trait implemented by section readers.
Associated Types
Required methods
fn original_position(&self) -> usize
fn original_position(&self) -> usize
Gets the original position of the reader.
Provided methods
fn ensure_end(&self) -> Result<()>
fn ensure_end(&self) -> Result<()>
Ensures the reader is at the end of the section.
This methods returns an error if there is more data in the section than what is described by the section’s header.