Skip to main content

MiscApi

Trait MiscApi 

Source
pub trait MiscApi {
    // Required methods
    fn len(&mut self, idx: isize);
    fn concat(&mut self, n: usize);
    fn next(&mut self, idx: isize) -> bool;
    fn error(&mut self) -> isize;
    fn pcall(&mut self, n_args: isize, n_results: isize, msg: isize) -> isize;
}

Required Methods§

Source

fn len(&mut self, idx: isize)

Source

fn concat(&mut self, n: usize)

Source

fn next(&mut self, idx: isize) -> bool

Source

fn error(&mut self) -> isize

Source

fn pcall(&mut self, n_args: isize, n_results: isize, msg: isize) -> isize

Dyn Compatibility§

This trait is dyn compatible.

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

Implementors§