unionstd.tar.Diagnostics.Error[src]

Fields

unable_to_create_sym_link: struct {
    code: anyerror,
    file_name: []const u8,
    link_name: []const u8,
}
unable_to_create_file: struct {
    code: anyerror,
    file_name: []const u8,
}
unsupported_file_type: struct {
    file_name: []const u8,
    file_type: Header.Kind,
}
components_outside_stripped_prefix: struct {
    file_name: []const u8,
}

Source Code

Source code
pub const Error = union(enum) {
    unable_to_create_sym_link: struct {
        code: anyerror,
        file_name: []const u8,
        link_name: []const u8,
    },
    unable_to_create_file: struct {
        code: anyerror,
        file_name: []const u8,
    },
    unsupported_file_type: struct {
        file_name: []const u8,
        file_type: Header.Kind,
    },
    components_outside_stripped_prefix: struct {
        file_name: []const u8,
    },
}