rune::module

Struct ModuleConstantBuilder

Source
pub struct ModuleConstantBuilder<'a, N, V> { /* private fields */ }
Expand description

Raw function builder as returned by Module::raw_function.

This allows for building a function regularly with ModuleConstantBuilder::build or statically associate the function with a type through ModuleConstantBuilder::build_associated::<T>.

Implementations§

Source§

impl<'a, N, V> ModuleConstantBuilder<'a, N, V>

Source

pub fn build(self) -> Result<ItemMut<'a>, ContextError>
where N: IntoComponent,

Add the free constant directly to the module.

§Examples
use rune::{Any, Module};
use rune::runtime::VmResult;

let mut m = Module::with_item(["module"])?;
m.constant("NAME", "Hello World").build()?;
Source

pub fn build_associated<T>(self) -> Result<ItemMut<'a>, ContextError>
where T: TypeOf, N: ToInstance,

Build a constant that is associated with the static type T.

§Errors

This function call will cause an error in Context::install if the type we’re associating it with has not been registered.

use rune::{Any, Context, Module};

#[derive(Any)]
struct Thing;

let mut m = Module::default();
m.constant("CONSTANT", "Hello World").build_associated::<Thing>()?;

let mut c = Context::default();
assert!(c.install(m).is_err());
§Examples
use rune::{docstring, Any, Module};

let mut module = Module::default();

#[derive(Any)]
struct Thing;

module.constant("TEN", 10)
    .build_associated::<Thing>()?
    .docs(docstring! {
        /// Ten which is an associated constant.
    });

Auto Trait Implementations§

§

impl<'a, N, V> Freeze for ModuleConstantBuilder<'a, N, V>
where N: Freeze, V: Freeze,

§

impl<'a, N, V> !RefUnwindSafe for ModuleConstantBuilder<'a, N, V>

§

impl<'a, N, V> Send for ModuleConstantBuilder<'a, N, V>
where N: Send, V: Send,

§

impl<'a, N, V> Sync for ModuleConstantBuilder<'a, N, V>
where N: Sync, V: Sync,

§

impl<'a, N, V> Unpin for ModuleConstantBuilder<'a, N, V>
where N: Unpin, V: Unpin,

§

impl<'a, N, V> !UnwindSafe for ModuleConstantBuilder<'a, N, V>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

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

fn in_current_span(self) -> Instrumented<Self>

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

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

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

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

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

fn with_current_subscriber(self) -> WithDispatch<Self>

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

impl<T> ErasedDestructor for T
where T: 'static,

Source§

impl<T> MaybeSendSync for T