pub enum HeapBottomType {
NoExtern,
None,
NoFunc,
NoExn,
NoCont,
}Available on crate feature
runtime only.Expand description
A bottom heap type.
Variants§
NoExtern
The common subtype of all external references.
None
The common subtype of all internal references.
NoFunc
The common subtype of all function references.
NoExn
The common subtype of all exception references.
NoCont
The common subtype of all continuation references.
Trait Implementations§
Source§impl Clone for HeapBottomType
impl Clone for HeapBottomType
Source§fn clone(&self) -> HeapBottomType
fn clone(&self) -> HeapBottomType
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 moreimpl Copy for HeapBottomType
Source§impl Debug for HeapBottomType
impl Debug for HeapBottomType
impl Eq for HeapBottomType
Source§impl From<HeapBottomType> for HeapType
impl From<HeapBottomType> for HeapType
Source§fn from(value: HeapBottomType) -> Self
fn from(value: HeapBottomType) -> Self
Converts to this type from the input type.
Source§impl PartialEq for HeapBottomType
impl PartialEq for HeapBottomType
impl StructuralPartialEq for HeapBottomType
Auto Trait Implementations§
impl Freeze for HeapBottomType
impl RefUnwindSafe for HeapBottomType
impl Send for HeapBottomType
impl Sync for HeapBottomType
impl Unpin for HeapBottomType
impl UnsafeUnpin for HeapBottomType
impl UnwindSafe for HeapBottomType
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more