Trait wasmparser::SectionReader
source · pub trait SectionReader {
type Item;
// Required methods
fn read(&mut self) -> Result<Self::Item>;
fn eof(&self) -> bool;
fn original_position(&self) -> usize;
fn range(&self) -> Range<usize>;
// Provided method
fn ensure_end(&self) -> Result<()> { ... }
}
Expand description
A trait implemented by section readers.
Required Associated Types§
Required Methods§
sourcefn original_position(&self) -> usize
fn original_position(&self) -> usize
Gets the original position of the reader.
Provided Methods§
sourcefn 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.