Struct rune::Module

source · []
pub struct Module { /* private fields */ }
Expand description

A Module that is a collection of native functions and types.

Needs to be installed into a Context using Context::install.

Implementations

Create an empty module for the root path.

Construct a new module for the given item.

Construct a new module for the given crate.

Construct a new module for the given crate.

Register a type. Registering a type is mandatory in order to register instance functions using that type.

This will allow the type to be used within scripts, using the item named here.

Examples
use rune::Any;

#[derive(Any)]
struct MyBytes {
    queue: Vec<String>,
}

impl MyBytes {
    fn len(&self) -> usize {
        self.queue.len()
    }
}

// Register `len` without registering a type.
let mut module = rune::Module::default();
// Note: cannot do this until we have registered a type.
module.inst_fn("len", MyBytes::len)?;

let mut context = rune::Context::new();
assert!(context.install(&module).is_err());

// Register `len` properly.
let mut module = rune::Module::default();

module.ty::<MyBytes>()?;
module.inst_fn("len", MyBytes::len)?;

let mut context = rune::Context::new();
assert!(context.install(&module).is_ok());

Register that the given type is a struct, and that it has the given compile-time metadata. This implies that each field has a Protocol::GET field function.

This is typically not used directly, but is used automatically with the Any derive.

Register enum metadata for the given type T. This allows an enum to be used in limited ways in Rune.

Register a variant constructor for type T.

Construct type information for the unit type.

Registering this allows the given type to be used in Rune scripts when referring to the unit type.

Examples

This shows how to register the unit type () as nonstd::unit.

use rune::Module;

let mut module = Module::with_item(&["nonstd"]);
module.unit("unit")?;

Construct the type information for the GeneratorState type.

Registering this allows the given type to be used in Rune scripts when referring to the GeneratorState type.

Examples

This shows how to register the GeneratorState as nonstd::generator::GeneratorState.

use rune::Module;

let mut module = Module::with_crate_item("nonstd", &["generator"]);
module.generator_state(&["GeneratorState"])?;

Construct type information for the Option type.

Registering this allows the given type to be used in Rune scripts when referring to the Option type.

Examples

This shows how to register the Option as nonstd::option::Option.

use rune::Module;

let mut module = Module::with_crate_item("nonstd", &["option"]);
module.option(&["Option"])?;

Construct type information for the internal Result type.

Registering this allows the given type to be used in Rune scripts when referring to the Result type.

Examples

This shows how to register the Result as nonstd::result::Result.

use rune::Module;

let mut module = Module::with_crate_item("nonstd", &["result"]);
module.result(&["Result"])?;

Register a function that cannot error internally.

Examples
fn add_ten(value: i64) -> i64 {
    value + 10
}

let mut module = rune::Module::default();

module.function(&["add_ten"], add_ten)?;
module.function(&["empty"], || Ok::<_, rune::Error>(()))?;
module.function(&["string"], |a: String| Ok::<_, rune::Error>(()))?;
module.function(&["optional"], |a: Option<String>| Ok::<_, rune::Error>(()))?;

Register a constant value, at a crate, module or associated level.

Examples

let mut module = rune::Module::default();

module.constant(&["TEN"], 10)?; // a global TEN value
module.constant(&["MyType", "TEN"], 10)?; // looks like an associated value

Register a native macro handler.

Register a function.

Examples
let mut module = rune::Module::default();

module.async_function(&["empty"], || async { () })?;
module.async_function(&["empty_fallible"], || async { Ok::<_, rune::Error>(()) })?;
module.async_function(&["string"], |a: String| async { Ok::<_, rune::Error>(()) })?;
module.async_function(&["optional"], |a: Option<String>| async { Ok::<_, rune::Error>(()) })?;

Register a raw function which interacts directly with the virtual machine.

Register an instance function.

Examples
use rune::Any;

#[derive(Any)]
struct MyBytes {
    queue: Vec<String>,
}

impl MyBytes {
    fn new() -> Self {
        Self {
            queue: Vec::new(),
        }
    }

    fn len(&self) -> usize {
        self.queue.len()
    }
}

let mut module = rune::Module::default();

module.ty::<MyBytes>()?;
module.function(&["MyBytes", "new"], MyBytes::new)?;
module.inst_fn("len", MyBytes::len)?;

let mut context = rune::Context::new();
context.install(&module)?;

Install a protocol function that interacts with the given field.

Install a protocol function that interacts with the given index.

An index can either be a field inside a tuple, or a variant inside of an enum as configured with Module::enum_meta.

Register an instance function.

Examples
use std::sync::atomic::AtomicU32;
use std::sync::Arc;
use rune::Any;

#[derive(Clone, Debug, Any)]
struct MyType {
    value: Arc<AtomicU32>,
}

impl MyType {
    async fn test(&self) -> rune::Result<()> {
        Ok(())
    }
}

let mut module = rune::Module::default();

module.ty::<MyType>()?;
module.async_inst_fn("test", MyType::test)?;

Trait Implementations

Returns the “default value” for a type. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more