Struct cranelift_codegen::ir::entities::Heap
source · pub struct Heap(_);
Expand description
An opaque reference to a heap.
Heaps are used to access dynamically allocated memory through
heap_addr
.
To create a heap, use FunctionBuilder::create_heap
.
While the order is stable, it is arbitrary.
Implementations§
Trait Implementations§
source§impl Ord for Heap
impl Ord for Heap
source§impl PartialOrd<Heap> for Heap
impl PartialOrd<Heap> for Heap
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moresource§impl ReservedValue for Heap
impl ReservedValue for Heap
source§fn reserved_value() -> Heap
fn reserved_value() -> Heap
Create an instance of the reserved value.
source§fn is_reserved_value(&self) -> bool
fn is_reserved_value(&self) -> bool
Checks whether value is the reserved one.
impl Copy for Heap
impl Eq for Heap
impl StructuralEq for Heap
impl StructuralPartialEq for Heap
Auto Trait Implementations§
impl RefUnwindSafe for Heap
impl Send for Heap
impl Sync for Heap
impl Unpin for Heap
impl UnwindSafe for Heap
Blanket Implementations§
source§impl<T> CallHasher for Twhere
T: Hash + ?Sized,
impl<T> CallHasher for Twhere
T: Hash + ?Sized,
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.