enum DebugDisposition [src]
Fields
pointer = @bitCast(Bits{})
optional = @bitCast(Bits{ .optional_ptr = true })
_
Source
pub const DebugDisposition = enum(usize) {
const Bits = packed struct(usize) {
optional_ptr: bool = false,
_pad: std.meta.Int(.unsigned, @bitSizeOf(usize) - 1) = 0,
};
pointer = @bitCast(Bits{}),
optional = @bitCast(Bits{ .optional_ptr = true }),
_,
}