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§
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
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".