pub trait ICallableApi {
// Required methods
fn push_int(&mut self, cell: i32) -> Result<(), SPError>;
fn push_float(&mut self, number: f32) -> Result<(), SPError>;
fn push_string(&mut self, string: &CStr) -> Result<(), SPError>;
}
pub trait ICallableApi {
// Required methods
fn push_int(&mut self, cell: i32) -> Result<(), SPError>;
fn push_float(&mut self, number: f32) -> Result<(), SPError>;
fn push_string(&mut self, string: &CStr) -> Result<(), SPError>;
}