Struct wasmtime_environ::wasm::wasmparser::CodeSectionReader [−][src]
Implementations
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]
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]
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]
Auto Trait Implementations
impl<'a> RefUnwindSafe for CodeSectionReader<'a>
impl<'a> Send for CodeSectionReader<'a>
impl<'a> Sync for CodeSectionReader<'a>
impl<'a> Unpin for CodeSectionReader<'a>
impl<'a> UnwindSafe for CodeSectionReader<'a>
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,