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

Fields

field_type: Index

The struct_init_field_type ZIR instruction for this field init.

init: Ref

The field init expression to be used as the field value. This value will be coerced to the field type if not already.

Source Code

Source code
pub const Item = struct {
    /// The `struct_init_field_type` ZIR instruction for this field init.
    field_type: Index,
    /// The field init expression to be used as the field value. This value will be coerced
    /// to the field type if not already.
    init: Ref,
}