#[repr(i32)]pub enum HeapState {
Idle = 0,
Tracing = 1,
MajorCollecting = 2,
MinorCollecting = 3,
CycleCollecting = 4,
}Variants§
Trait Implementations§
impl Copy for HeapState
impl Eq for HeapState
impl StructuralPartialEq for HeapState
Auto Trait Implementations§
impl Freeze for HeapState
impl RefUnwindSafe for HeapState
impl Send for HeapState
impl Sync for HeapState
impl Unpin for HeapState
impl UnsafeUnpin for HeapState
impl UnwindSafe for HeapState
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