Struct gluon::Thread []

pub struct Thread { /* fields omitted */ }

Representation of the virtual machine

Methods

impl Thread

Spawns a new gluon thread with its own stack and heap but while still sharing the same global environment

Roots self, extending the lifetime of this thread until at least the returned RootedThread is droppped

Creates a new global value at name. Fails if a global called name already exists.

Retrieves the global called name. Fails if the global does not exist or it does not have the correct type.

Retrieves type information about the type name. Types inside records can be accessed using dot notation (std.prelude.Option)

Returns the gluon type that was bound to T

Registers the type T as being a gluon type called name with generic arguments args

Locks and retrieves the global environment of the vm

Retrieves the macros defined for this vm

Runs a garbage collection.

Pushes a value to the top of the stack

Removes the top value from the stack

Trait Implementations

impl Traverseable for Thread

impl PartialEq<Thread> for Thread

impl Userdata for Thread

impl VmType for Thread

A version of Self which implements Any allowing a TypeId to be retrieved

Creates an gluon type which maps to Self in rust

How many extra arguments a function returning this type requires. Used for abstract types which when used in return position should act like they still need more arguments before they are called Read more

impl Debug for Thread

Formats the value using the given formatter.

impl ThreadInternal for Thread

Locks and retrives this threads stack

Roots a userdata

Roots a string

Roots a value

Roots a value

Evaluates a zero argument function (a thunk)

Calls a module, allowed to to run IO expressions

Calls a function on the stack. When this function is called it is expected that the function exists at stack.len() - args - 1 and that the arguments are of the correct type