enum ComplexType [src]

Fields

NULL = 0No derived type; the symbol is a simple scalar variable.
POINTER = 16The symbol is a pointer to base type.
FUNCTION = 32The symbol is a function that returns a base type.
ARRAY = 48The symbol is an array of base type.
_

Source

pub const ComplexType = enum(u8) { /// No derived type; the symbol is a simple scalar variable. NULL = 0, /// The symbol is a pointer to base type. POINTER = 16, /// The symbol is a function that returns a base type. FUNCTION = 32, /// The symbol is an array of base type. ARRAY = 48, _, }