Struct chakracore::runtime::Runtime [] [src]

pub struct Runtime { /* fields omitted */ }

An isolated instance of a runtime.

Methods

impl Runtime
[src]

Creates a new runtime.

Returns a runtime builder.

Performs a full garbage collection.

Runs any idle tasks that are in the queue. The returned duration is the least amount of time that should pass until this function is called again. This call will fail if the runtime was created without idle processing enabled.

Returns whether any processing was done or not.

Returns the runtime's memory usage

Returns the underlying raw pointer behind this runtime.

Trait Implementations

impl Drop for Runtime
[src]

A method called when the value goes out of scope. Read more