pub enum LuaGCMode {
Incremental,
}
Expand description
Mode of the Lua garbage collector (GC).
In Lua 5.4 GC can work in two modes: incremental and generational. Previous Lua versions support only incremental GC.
More information can be found in the Lua documentation.
Variants
Incremental
Trait Implementations
impl Copy for GCMode
impl Eq for GCMode
impl StructuralEq for GCMode
impl StructuralPartialEq for GCMode
Auto Trait Implementations
impl RefUnwindSafe for GCMode
impl Send for GCMode
impl Sync for GCMode
impl Unpin for GCMode
impl UnwindSafe for GCMode
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more