structstd.zig.Zir.Inst.Import[src]

Fields

res_ty: Ref

The result type of the import, or .none if none was available.

path: NullTerminatedString

The import path.

Source Code

Source code
pub const Import = struct {
    /// The result type of the import, or `.none` if none was available.
    res_ty: Ref,
    /// The import path.
    path: NullTerminatedString,
}