Struct rhai::NativeCallContext[][src]

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

Context of a native Rust function call.

Implementations

Create a new NativeCallContext.

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

Not available under no_module.

The current Engine.

Name of the function called.

The current source.

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

Not available under no_module.

(INTERNALS) The current set of modules imported via import statements. Exported under the internals feature only.

Not available under no_module.

Get an iterator over the namespaces containing definitions of all script-defined functions.

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

Call a function inside the call context.

WARNING

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

Do not use the arguments after this call. If they are needed afterwards, clone them before calling this function.

If is_method 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

Performs the conversion.

Performs the conversion.

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

Performs the conversion.

Performs the conversion.

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.