Struct wasmtime_environ::wasm::wasmparser::CodeSectionReader   [−][src]
pub struct CodeSectionReader<'a> { /* fields omitted */ }Implementations
impl<'a> CodeSectionReader<'a>[src]
impl<'a> CodeSectionReader<'a>[src]pub fn new(
    data: &'a [u8], 
    offset: usize
) -> Result<CodeSectionReader<'a>, BinaryReaderError>[src]
data: &'a [u8],
offset: usize
) -> Result<CodeSectionReader<'a>, BinaryReaderError>
pub fn original_position(&self) -> usize[src]
pub fn get_count(&self) -> u32[src]
pub fn read<'b>(&mut self) -> Result<FunctionBody<'b>, BinaryReaderError> where
    'a: 'b, [src]
'a: 'b,
Reads content of the code section.
Examples
use wasmparser::CodeSectionReader; let mut code_reader = CodeSectionReader::new(data, 0).unwrap(); for _ in 0..code_reader.get_count() { let body = code_reader.read().expect("function body"); let mut binary_reader = body.get_binary_reader(); assert!(binary_reader.read_var_u32().expect("local count") == 0); let op = binary_reader.read_operator().expect("first operator"); println!("First operator: {:?}", op); }
Trait Implementations
impl<'a> IntoIterator for CodeSectionReader<'a>[src]
impl<'a> IntoIterator for CodeSectionReader<'a>[src]type Item = Result<FunctionBody<'a>, BinaryReaderError>
The type of the elements being iterated over.
type IntoIter = SectionIteratorLimited<CodeSectionReader<'a>>
Which kind of iterator are we turning this into?
pub fn into_iter(self) -> <CodeSectionReader<'a> as IntoIterator>::IntoIter[src]
Implements iterator over the code section.
Examples
use wasmparser::CodeSectionReader; let mut code_reader = CodeSectionReader::new(data, 0).unwrap(); for body in code_reader { let mut binary_reader = body.expect("b").get_binary_reader(); assert!(binary_reader.read_var_u32().expect("local count") == 0); let op = binary_reader.read_operator().expect("first operator"); println!("First operator: {:?}", op); }
impl<'a> SectionReader for CodeSectionReader<'a>[src]
impl<'a> SectionReader for CodeSectionReader<'a>[src]type Item = FunctionBody<'a>
pub fn read(
    &mut self
) -> Result<<CodeSectionReader<'a> as SectionReader>::Item, BinaryReaderError>[src]
&mut self
) -> Result<<CodeSectionReader<'a> as SectionReader>::Item, BinaryReaderError>
pub fn eof(&self) -> bool[src]
pub fn original_position(&self) -> usize[src]
pub fn range(&self) -> Range[src]
pub fn ensure_end(&self) -> Result<(), BinaryReaderError>[src]
impl<'a> SectionWithLimitedItems for CodeSectionReader<'a>[src]
impl<'a> SectionWithLimitedItems for CodeSectionReader<'a>[src]