Libloading

Struct Libloading 

Source
pub struct Libloading { /* private fields */ }
Expand description

Loading dynamic libraries using the libloading crate.

§Example

// Create your dynamic library loader & rhai engine.
let mut loader = rhai_dylib::loader::libloading::Libloading::new();
let mut engine = rhai::Engine::new();

// `my_first_module` library exposes the `print_first` function.
loader.load("my_first_module.so", &mut engine).expect("failed to load library 1");
// `my_second_module` library exposes the `print_second` function.
loader.load("my_second_module.so", &mut engine).expect("failed to load library 2");

// functions are now registered in the engine and can be called !
engine.run(r"
    print_first();
    print_second();
");

Implementations§

Source§

impl Libloading

Source

pub fn new() -> Self

Create a new instance of the loader.

Trait Implementations§

Source§

impl Default for Libloading

Source§

fn default() -> Self

Create a new instance of the loader.

Source§

impl Loader for Libloading

Source§

fn load( &mut self, path: impl AsRef<Path>, ) -> Result<Shared<Module>, Box<EvalAltResult>>

Load a rhai module from a dynamic library.

Auto Trait Implementations§

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, 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, 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.