Struct cranelift_codegen::ir::immediates::HeapImmData
source · pub struct HeapImmData {
pub flags: MemFlags,
pub heap: Heap,
pub offset: Uimm32,
}
Expand description
Out-of-line heap access immediates.
Fields§
§flags: MemFlags
The memory flags for the heap access.
heap: Heap
The heap being accessed.
offset: Uimm32
The static offset added to the heap access’s index.
Trait Implementations§
source§impl Clone for HeapImmData
impl Clone for HeapImmData
source§fn clone(&self) -> HeapImmData
fn clone(&self) -> HeapImmData
Returns a copy of the value. Read more
1.0.0 · 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 HeapImmData
impl Debug for HeapImmData
source§impl Hash for HeapImmData
impl Hash for HeapImmData
source§impl PartialEq<HeapImmData> for HeapImmData
impl PartialEq<HeapImmData> for HeapImmData
source§fn eq(&self, other: &HeapImmData) -> bool
fn eq(&self, other: &HeapImmData) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for HeapImmData
impl Eq for HeapImmData
impl StructuralEq for HeapImmData
impl StructuralPartialEq for HeapImmData
Auto Trait Implementations§
impl RefUnwindSafe for HeapImmData
impl Send for HeapImmData
impl Sync for HeapImmData
impl Unpin for HeapImmData
impl UnwindSafe for HeapImmData
Blanket Implementations§
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.