enumstd.builtin.Type.Pointer.Size[src]

This data structure is used by the Zig language code generation and therefore must be kept in sync with the compiler implementation.

Fields

one
many
slice
c

Source Code

Source code
pub const Size = enum(u2) {
    one,
    many,
    slice,
    c,
}