Struct wasmtime_environ::wasmparser::ConstExpr
source · pub struct ConstExpr<'a> { /* private fields */ }
Expand description
Represents an initialization expression.
Implementations§
source§impl<'a> ConstExpr<'a>
impl<'a> ConstExpr<'a>
sourcepub fn new(data: &[u8], offset: usize) -> ConstExpr<'_>
pub fn new(data: &[u8], offset: usize) -> ConstExpr<'_>
Constructs a new ConstExpr
from the given data and offset.
sourcepub fn get_binary_reader<'b>(&self) -> BinaryReader<'b>where
'a: 'b,
pub fn get_binary_reader<'b>(&self) -> BinaryReader<'b>where 'a: 'b,
Gets a binary reader for the initialization expression.
sourcepub fn get_operators_reader<'b>(&self) -> OperatorsReader<'b>where
'a: 'b,
pub fn get_operators_reader<'b>(&self) -> OperatorsReader<'b>where 'a: 'b,
Gets an operators reader for the initialization expression.