structstd.zig.Zir.Inst.StructInitAnon.Item[src]

Fields

field_name: NullTerminatedString

Null-terminated string table index.

init: Ref

The field init expression to be used as the field value.

Source Code

Source code
pub const Item = struct {
    /// Null-terminated string table index.
    field_name: NullTerminatedString,
    /// The field init expression to be used as the field value.
    init: Ref,
}