Struct gluon_vm::thread::Context[][src]

pub struct Context {
    pub stack: Stack,
    pub gc: Gc,
    // some fields omitted
}

Fields

Methods

impl Context
[src]

"Returns a future", letting the virtual machine know that future must be resolved to produce the actual value.

Safety

This function is unsafe because the vm lifetime must not outlive the lifetime of the Thread

Auto Trait Implementations

impl Send for Context

impl !Sync for Context