Struct rhai::TypeBuilder

source ·
pub struct TypeBuilder<'a, T: Variant + Clone> { /* private fields */ }
Expand description

Builder to build the API of a custom type for use with an Engine.

The type is automatically registered when this builder is dropped.

Pretty-Print Name

By default the type is registered with Engine::register_type (i.e. without a pretty-print name).

To define a pretty-print name, call with_name, to use Engine::register_type_with_name instead.

Implementations§

source§

impl<'a, T: Variant + Clone> TypeBuilder<'a, T>

source

pub fn with_name(&mut self, name: &'static str) -> &mut Self

Set a pretty-print name for the type_of function.

source

pub fn on_print( &mut self, on_print: impl Fn(&mut T) -> String + SendSync + 'static ) -> &mut Self

Pretty-print this custom type.

source

pub fn on_debug( &mut self, on_print: impl Fn(&mut T) -> String + SendSync + 'static ) -> &mut Self

Debug-print this custom type.

source

pub fn with_fn<A: 'static, const N: usize, const C: bool, R: Variant + Clone, const L: bool>( &mut self, name: impl AsRef<str> + Into<Identifier>, method: impl RegisterNativeFunction<A, N, C, R, L> + SendSync + 'static ) -> &mut Self

Register a custom function.

source§

impl<'a, T> TypeBuilder<'a, T>where T: Variant + Clone + IntoIterator, <T as IntoIterator>::Item: Variant + Clone,

source

pub fn is_iterable(&mut self) -> &mut Self

Register a type iterator. This is an advanced API.

source§

impl<'a, T: Variant + Clone> TypeBuilder<'a, T>

source

pub fn with_get<const C: bool, V: Variant + Clone, const L: bool>( &mut self, name: impl AsRef<str>, get_fn: impl RegisterNativeFunction<(Mut<T>,), 1, C, V, L> + SendSync + 'static ) -> &mut Self

Register a getter function.

The function signature must start with &mut self and not &self.

Not available under no_object.

source

pub fn with_set<const C: bool, V: Variant + Clone, const L: bool>( &mut self, name: impl AsRef<str>, set_fn: impl RegisterNativeFunction<(Mut<T>, V), 2, C, (), L> + SendSync + 'static ) -> &mut Self

Register a setter function.

Not available under no_object.

source

pub fn with_get_set<const C1: bool, const C2: bool, V: Variant + Clone, const L1: bool, const L2: bool>( &mut self, name: impl AsRef<str>, get_fn: impl RegisterNativeFunction<(Mut<T>,), 1, C1, V, L1> + SendSync + 'static, set_fn: impl RegisterNativeFunction<(Mut<T>, V), 2, C2, (), L2> + SendSync + 'static ) -> &mut Self

Short-hand for registering both getter and setter functions.

All function signatures must start with &mut self and not &self.

Not available under no_object.

source§

impl<'a, T: Variant + Clone> TypeBuilder<'a, T>

source

pub fn with_indexer_get<X: Variant + Clone, const C: bool, V: Variant + Clone, const L: bool>( &mut self, get_fn: impl RegisterNativeFunction<(Mut<T>, X), 2, C, V, L> + SendSync + 'static ) -> &mut Self

Register an index getter.

The function signature must start with &mut self and not &self.

Not available under both no_index and no_object.

source

pub fn with_indexer_set<X: Variant + Clone, const C: bool, V: Variant + Clone, const L: bool>( &mut self, set_fn: impl RegisterNativeFunction<(Mut<T>, X, V), 3, C, (), L> + SendSync + 'static ) -> &mut Self

Register an index setter.

Not available under both no_index and no_object.

source

pub fn with_indexer_get_set<X: Variant + Clone, const C1: bool, const C2: bool, V: Variant + Clone, const L1: bool, const L2: bool>( &mut self, get_fn: impl RegisterNativeFunction<(Mut<T>, X), 2, C1, V, L1> + SendSync + 'static, set_fn: impl RegisterNativeFunction<(Mut<T>, X, V), 3, C2, (), L2> + SendSync + 'static ) -> &mut Self

Short-hand for registering both index getter and setter functions.

Not available under both no_index and no_object.

source§

impl<'a, T: Variant + Clone> TypeBuilder<'a, T>

source

pub fn with_result_fn<S, A: 'static, const N: usize, const C: bool, R, F>( &mut self, name: S, method: F ) -> &mut Selfwhere S: AsRef<str> + Into<Identifier>, R: Variant + Clone, F: RegisterNativeFunction<A, N, C, R, true> + SendSync + 'static,

👎Deprecated since 1.9.1: use with_fn instead

Register a custom fallible function.

Deprecated

This method is deprecated. Use with_fn instead.

This method will be removed in the next major version.

source

pub fn with_get_result<V: Variant + Clone, const C: bool>( &mut self, name: impl AsRef<str>, get_fn: impl RegisterNativeFunction<(Mut<T>,), 1, C, V, true> + SendSync + 'static ) -> &mut Self

👎Deprecated since 1.9.1: use with_get instead

Register a fallible getter function.

The function signature must start with &mut self and not &self.

Not available under no_object.

Deprecated

This method is deprecated. Use with_get instead.

This method will be removed in the next major version.

source

pub fn with_set_result<V: Variant + Clone, const C: bool>( &mut self, name: impl AsRef<str>, set_fn: impl RegisterNativeFunction<(Mut<T>, V), 2, C, (), true> + SendSync + 'static ) -> &mut Self

👎Deprecated since 1.9.1: use with_set instead

Register a fallible setter function.

Not available under no_object.

Deprecated

This method is deprecated. Use with_set instead.

This method will be removed in the next major version.

source

pub fn with_indexer_get_result<X: Variant + Clone, V: Variant + Clone, const C: bool>( &mut self, get_fn: impl RegisterNativeFunction<(Mut<T>, X), 2, C, V, true> + SendSync + 'static ) -> &mut Self

👎Deprecated since 1.9.1: use with_indexer_get instead

Register an fallible index getter.

The function signature must start with &mut self and not &self.

Not available under both no_index and no_object.

Deprecated

This method is deprecated. Use with_indexer_get instead.

This method will be removed in the next major version.

source

pub fn with_indexer_set_result<X: Variant + Clone, V: Variant + Clone, const C: bool>( &mut self, set_fn: impl RegisterNativeFunction<(Mut<T>, X, V), 3, C, (), true> + SendSync + 'static ) -> &mut Self

👎Deprecated since 1.9.1: use with_indexer_set instead

Register an fallible index setter.

Not available under both no_index and no_object.

Deprecated

This method is deprecated. Use with_indexer_set instead.

This method will be removed in the next major version.

Trait Implementations§

source§

impl<'a, T: Variant + Clone> Drop for TypeBuilder<'a, T>

source§

fn drop(&mut self)

Executes the destructor for this type. Read more

Auto Trait Implementations§

§

impl<'a, T> !RefUnwindSafe for TypeBuilder<'a, T>

§

impl<'a, T> !Send for TypeBuilder<'a, T>

§

impl<'a, T> !Sync for TypeBuilder<'a, T>

§

impl<'a, T> Unpin for TypeBuilder<'a, T>where T: Unpin,

§

impl<'a, T> !UnwindSafe for TypeBuilder<'a, T>

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere 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, U> Into<U> for Twhere 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, U> TryFrom<U> for Twhere U: Into<T>,

§

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 Twhere U: TryFrom<T>,

§

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.