Enum mmtk::util::alloc::allocators::AllocatorSelector
source · #[repr(C, u8)]pub enum AllocatorSelector {
BumpPointer(u8),
LargeObject(u8),
Malloc(u8),
Immix(u8),
MarkCompact(u8),
FreeList(u8),
None,
}
Expand description
This type describe an allocator in the crate::Mutator
.
For some VM bindings, they may need to access this type from native code. This type is equivalent to the following native types:
#[repr(C)]
struct AllocatorSelector {
tag: AllocatorSelectorTag,
payload: u8,
}
#[repr(u8)]
enum AllocatorSelectorTag {
BumpPointer,
LargeObject,
…
}
Variants§
BumpPointer(u8)
Represents a crate::util::alloc::bumpallocator::BumpAllocator
.
LargeObject(u8)
Malloc(u8)
Represents a crate::util::alloc::malloc_allocator::MallocAllocator
.
Immix(u8)
Represents a crate::util::alloc::immix_allocator::ImmixAllocator
.
MarkCompact(u8)
FreeList(u8)
None
No allocator found.
Trait Implementations§
source§impl Clone for AllocatorSelector
impl Clone for AllocatorSelector
source§fn clone(&self) -> AllocatorSelector
fn clone(&self) -> AllocatorSelector
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 AllocatorSelector
impl Debug for AllocatorSelector
source§impl Default for AllocatorSelector
impl Default for AllocatorSelector
source§fn default() -> AllocatorSelector
fn default() -> AllocatorSelector
Returns the “default value” for a type. Read more
source§impl Hash for AllocatorSelector
impl Hash for AllocatorSelector
source§impl Ord for AllocatorSelector
impl Ord for AllocatorSelector
source§fn cmp(&self, other: &AllocatorSelector) -> Ordering
fn cmp(&self, other: &AllocatorSelector) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq for AllocatorSelector
impl PartialEq for AllocatorSelector
source§fn eq(&self, other: &AllocatorSelector) -> bool
fn eq(&self, other: &AllocatorSelector) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd for AllocatorSelector
impl PartialOrd for AllocatorSelector
source§fn partial_cmp(&self, other: &AllocatorSelector) -> Option<Ordering>
fn partial_cmp(&self, other: &AllocatorSelector) -> Option<Ordering>
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 moreimpl Copy for AllocatorSelector
impl Eq for AllocatorSelector
impl StructuralPartialEq for AllocatorSelector
Auto Trait Implementations§
impl RefUnwindSafe for AllocatorSelector
impl Send for AllocatorSelector
impl Sync for AllocatorSelector
impl Unpin for AllocatorSelector
impl UnwindSafe for AllocatorSelector
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
§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Convert
Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
. Box<dyn Any>
can
then be further downcast
into Box<ConcreteType>
where ConcreteType
implements Trait
.§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Convert
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
.§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s.§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s.§impl<T> DowncastSync for T
impl<T> DowncastSync for T
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