Struct cranelift_wasm::wasmparser::ConstExpr
source · [−]pub struct ConstExpr<'a> { /* private fields */ }
Expand description
Represents an initialization expression.
Implementations
sourceimpl<'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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more