Struct rhai::Imports[][src]

pub struct Imports { /* fields omitted */ }
Expand description

(INTERNALS) A stack of imported modules. Exported under the internals feature only.

Volatile Data Structure

This type is volatile and may change.

Implementations

impl Imports[src]

pub fn len(&self) -> usize[src]

Get the length of this stack of imported modules.

pub fn is_empty(&self) -> bool[src]

Is this stack of imported modules empty?

pub fn get(&self, index: usize) -> Option<Shared<Module>>[src]

Get the imported modules at a particular index.

pub fn find(&self, name: &str) -> Option<usize>[src]

Get the index of an imported modules by name.

pub fn push(
    &mut self,
    name: impl Into<Identifier>,
    module: impl Into<Shared<Module>>
)
[src]

Push an imported modules onto the stack.

pub fn truncate(&mut self, size: usize)[src]

Truncate the stack of imported modules to a particular length.

pub fn iter(&self) -> impl Iterator<Item = (&str, &Module)>[src]

Get an iterator to this stack of imported modules in reverse order.

pub fn into_iter(self) -> impl Iterator<Item = (Identifier, Shared<Module>)>[src]

Get a consuming iterator to this stack of imported modules in reverse order.

pub fn contains_fn(&self, hash: u64) -> bool[src]

Does the specified function hash key exist in this stack of imported modules?

pub fn get_fn(
    &self,
    hash: u64
) -> Option<(&CallableFunction, Option<&Identifier>)>
[src]

Get specified function via its hash key.

pub fn contains_iter(&self, id: TypeId) -> bool[src]

Does the specified TypeId iterator exist in this stack of imported modules?

pub fn get_iter(
    &self,
    id: TypeId
) -> Option<fn(_: Dynamic) -> Box<dyn Iterator<Item = Dynamic>>>
[src]

Get the specified TypeId iterator.

Trait Implementations

impl Clone for Imports[src]

fn clone(&self) -> Imports[src]

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for Imports[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter. Read more

impl Default for Imports[src]

fn default() -> Imports[src]

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

Auto Trait Implementations

impl !RefUnwindSafe for Imports

impl !Send for Imports

impl !Sync for Imports

impl Unpin for Imports

impl !UnwindSafe for Imports

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

impl<T> From<T> for T[src]

pub fn from(t: T) -> T[src]

Performs the conversion.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

pub fn into(self) -> U[src]

Performs the conversion.

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

pub fn to_owned(&self) -> T[src]

Creates owned data from borrowed data, usually by cloning. Read more

pub fn clone_into(&self, target: &mut T)[src]

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

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

Performs the conversion.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

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

Performs the conversion.