pub struct NativeCallContext<'a> { /* private fields */ }
Expand description

Context of a native Rust function call.

Implementations§

👎Deprecated since 1.3.0: use FnPtr::call to call a function pointer directly.

Create a new NativeCallContext.

Unimplemented

This method is deprecated. It is no longer implemented and always panics.

Use FnPtr::call to call a function pointer directly.

This method will be removed in the next major version.

👎Deprecated since 1.2.0: use call_fn_raw instead

Call a function inside the call context.

Deprecated

This method is deprecated. Use call_fn_raw instead.

This method will be removed in the next major version.

(internals) Create a new NativeCallContext. Exported under the internals feature only.

Not available under no_module.

👎Deprecated: This API is NOT deprecated, but it is considered volatile and may change in the future.

(internals) Create a NativeCallContext from a NativeCallContextStore. Exported under the internals feature only.

WARNING - Unstable API

This API is volatile and may change in the future.

👎Deprecated: This API is NOT deprecated, but it is considered volatile and may change in the future.

(internals) Store this NativeCallContext into a NativeCallContextStore. Exported under the internals feature only.

WARNING - Unstable API

This API is volatile and may change in the future.

The current Engine.

Name of the function called.

Position of the function call.

Current nesting level of function calls.

The current source.

Custom state kept in a Dynamic.

Get an iterator over the current set of modules imported via import statements in reverse order.

Not available under no_module.

(internals) The current GlobalRuntimeState, if any. Exported under the internals feature only.

Not available under no_module.

Get an iterator over the namespaces containing definitions of all script-defined functions in reverse order (i.e. parent namespaces are iterated after child namespaces).

Not available under no_function.

(internals) The current stack of namespaces containing definitions of all script-defined functions. Exported under the internals feature only.

Not available under no_function.

Call a function inside the call context with the provided arguments.

Call a registered native Rust function inside the call context with the provided arguments.

This is often useful because Rust functions typically only want to cross-call other registered Rust functions and not have to worry about scripted functions hijacking the process unknowingly (or deliberately).

Call a function (native Rust or scripted) inside the call context.

If is_method_call is true, the first argument is assumed to be the this pointer for a script-defined function (or the object of a method call).

WARNING - Low Level API

This function is very low level.

Arguments

All arguments may be consumed, meaning that they may be replaced by (). This is to avoid unnecessarily cloning the arguments.

DO NOT reuse the arguments after this call. If they are needed afterwards, clone them before calling this function.

If is_ref_mut is true, the first argument is assumed to be passed by reference and is not consumed.

Call a registered native Rust function inside the call context.

This is often useful because Rust functions typically only want to cross-call other registered Rust functions and not have to worry about scripted functions hijacking the process unknowingly (or deliberately).

WARNING - Low Level API

This function is very low level.

Arguments

All arguments may be consumed, meaning that they may be replaced by (). This is to avoid unnecessarily cloning the arguments.

DO NOT reuse the arguments after this call. If they are needed afterwards, clone them before calling this function.

If is_ref_mut is true, the first argument is assumed to be passed by reference and is not consumed.

Trait Implementations§

Formats the value using the given formatter. Read more
Converts to this type from the input type.

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.

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.