pub struct RegElement {
pub mode: RegElementMode,
pub values: Vec<RegElemValue>,
}Expand description
An element segment in lowered register IR.
Fields§
§mode: RegElementMode§values: Vec<RegElemValue>Element values (funcref indices or nulls), in order.
Trait Implementations§
Source§impl Clone for RegElement
impl Clone for RegElement
Source§fn clone(&self) -> RegElement
fn clone(&self) -> RegElement
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for RegElement
impl Debug for RegElement
impl Eq for RegElement
Source§impl PartialEq for RegElement
impl PartialEq for RegElement
impl StructuralPartialEq for RegElement
Auto Trait Implementations§
impl Freeze for RegElement
impl RefUnwindSafe for RegElement
impl Send for RegElement
impl Sync for RegElement
impl Unpin for RegElement
impl UnsafeUnpin for RegElement
impl UnwindSafe for RegElement
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