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>

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.