enumstd.coff.ComplexType[src]

Fields

NULL = 0

No derived type; the symbol is a simple scalar variable.

POINTER = 16

The symbol is a pointer to base type.

FUNCTION = 32

The symbol is a function that returns a base type.

ARRAY = 48

The symbol is an array of base type.

_

Source Code

Source code
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,

    _,
}