Struct 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.
Trait Implementations§
impl<'a> Copy for ConstExpr<'a>
Auto Trait Implementations§
impl<'a> RefUnwindSafe for ConstExpr<'a>
impl<'a> Send for ConstExpr<'a>
impl<'a> Sync for ConstExpr<'a>
impl<'a> Unpin for ConstExpr<'a>
impl<'a> UnwindSafe for ConstExpr<'a>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more