Trait jlrs::traits::gc::Gc[][src]

pub trait Gc: Gc {
    unsafe fn enable_gc(&mut self, on: bool) -> bool { ... }
fn gc_is_enabled(&mut self) -> bool { ... }
unsafe fn gc_collect(&mut self, mode: GcCollection) { ... } }

This trait is used to enable and disable the garbage collector and to force a collection.

Provided methods

unsafe fn enable_gc(&mut self, on: bool) -> bool[src]

Enable or disable the GC.

fn gc_is_enabled(&mut self) -> bool[src]

Returns true if the GC is enabled.

unsafe fn gc_collect(&mut self, mode: GcCollection)[src]

Force a collection.

Loading content...

Implementors

impl Gc for Julia[src]

impl<'frame, T: Frame<'frame>> Gc for T[src]

Loading content...