#[repr(u32)]pub enum mrb_gc_state {
MRB_GC_STATE_ROOT = 0,
MRB_GC_STATE_MARK = 1,
MRB_GC_STATE_SWEEP = 2,
}
Variants§
Trait Implementations§
Source§impl Clone for mrb_gc_state
impl Clone for mrb_gc_state
Source§fn clone(&self) -> mrb_gc_state
fn clone(&self) -> mrb_gc_state
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 mrb_gc_state
impl Debug for mrb_gc_state
Source§impl Hash for mrb_gc_state
impl Hash for mrb_gc_state
Source§impl PartialEq for mrb_gc_state
impl PartialEq for mrb_gc_state
impl Copy for mrb_gc_state
impl Eq for mrb_gc_state
impl StructuralPartialEq for mrb_gc_state
Auto Trait Implementations§
impl Freeze for mrb_gc_state
impl RefUnwindSafe for mrb_gc_state
impl Send for mrb_gc_state
impl Sync for mrb_gc_state
impl Unpin for mrb_gc_state
impl UnwindSafe for mrb_gc_state
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