Struct gluon::Thread [] [src]

pub struct Thread { /* fields omitted */ }

Representation of the virtual machine

Methods

impl Thread
[src]

[src]

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

[src]

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

[src]

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

Examples

Load the factorial rust function into gluon and evaluate factorial 5

fn factorial(x: i32) -> i32 {
    if x <= 1 { 1 } else { x * factorial(x - 1) }
}
let vm = new_vm();
vm.define_global("factorial", primitive!(1 factorial)).unwrap();

let result = Compiler::new()
    .run_expr_async::<i32>(&vm, "example", "factorial 5")
    .sync_or_error()
    .unwrap();
let expected = (120, Type::int());

assert_eq!(result, expected);

[src]

Retrieves the global called name.

Examples

Bind the (+) function in gluon's prelude standard library to an add function in rust

let vm = new_vm();
Compiler::new()
    .run_expr_async::<OpaqueValue<&Thread, Hole>>(&vm, "example",
        r#" import! "std/int.glu" "#)
    .sync_or_error()
    .unwrap();
let mut add: FunctionRef<fn(i32, i32) -> i32> =
    vm.get_global("std.int.num.(+)").unwrap();
let result = add.call(1, 2);
assert_eq!(result, Ok(3));

Errors

if the global does not exist or it does not have the correct type.

[src]

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

[src]

Returns the gluon type that was bound to T

[src]

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

[src]

Locks and retrieves the global environment of the vm

[src]

Retrieves the macros defined for this vm

[src]

Runs a garbage collection.

[src]

Pushes a value to the top of the stack

[src]

Removes the top value from the stack

[src]

Trait Implementations

impl ThreadInternal for Thread
[src]

[src]

Locks and retrives this threads stack

[src]

Roots a userdata

[src]

Roots a string

[src]

Roots a value

[src]

[src]

Evaluates a zero argument function (a thunk)

[src]

Calls a module, allowed to to run IO expressions

[src]

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

[src]

[src]

[src]

[src]

owner is theread that owns value which is not necessarily the same as self

[src]

[src]

impl<'a> VmRoot<'a> for &'a Thread
[src]

[src]

impl Traverseable for Thread
[src]

[src]

impl VmType for Thread
[src]

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

[src]

Creates an gluon type which maps to Self in rust

[src]

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 Userdata for Thread
[src]

[src]

impl PartialEq<Thread> for Thread
[src]

[src]

impl Debug for Thread
[src]

[src]

Formats the value using the given formatter.