Type Alias Deffunction

Source
pub type Deffunction = deffunction;

Aliased Type§

struct Deffunction {
    pub header: constructHeader,
    pub busy: u32,
    pub executing: u32,
    pub trace: bool,
    pub code: *mut expr,
    pub minNumberOfParameters: u16,
    pub maxNumberOfParameters: u16,
    pub numberOfLocalVars: u16,
}

Fields§

§header: constructHeader§busy: u32§executing: u32§trace: bool§code: *mut expr§minNumberOfParameters: u16§maxNumberOfParameters: u16§numberOfLocalVars: u16