Struct rustdb::run::Function [−][src]
pub struct Function {
pub param_count: usize,
pub return_type: DataType,
pub local_typ: Vec<DataType>,
pub source: Rc<String>,
pub ilist: RefCell<Vec<Instruction>>,
pub compiled: Cell<bool>,
}Expand description
Compiled Function.
Fields
param_count: usizereturn_type: DataTypelocal_typ: Vec<DataType>source: Rc<String>ilist: RefCell<Vec<Instruction>>compiled: Cell<bool>