pub enum GcKind {
Incremental = 0,
Generational = 1,
}Expand description
Garbage collector operating mode.
macros.tsv: KGC_INC → GcKind::Incremental, KGC_GEN → GcKind::Generational
Variants§
Trait Implementations§
impl Copy for GcKind
impl Eq for GcKind
impl StructuralPartialEq for GcKind
Auto Trait Implementations§
impl Freeze for GcKind
impl RefUnwindSafe for GcKind
impl Send for GcKind
impl Sync for GcKind
impl Unpin for GcKind
impl UnsafeUnpin for GcKind
impl UnwindSafe for GcKind
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