Skip to main content

CallApi

Trait CallApi 

Source
pub trait CallApi {
    // Required methods
    fn load(&mut self, chunk: BufReader<File>, chunk_name: &str, mode: &str);
    fn call(&mut self, n_args: isize, n_results: isize);
}

Required Methods§

Source

fn load(&mut self, chunk: BufReader<File>, chunk_name: &str, mode: &str)

Source

fn call(&mut self, n_args: isize, n_results: isize)

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§