structstd.os.wasi.oflags_t[src]

Fields

CREAT: bool = false
DIRECTORY: bool = false
EXCL: bool = false
TRUNC: bool = false
_: u12 = 0

Source Code

Source code
pub const oflags_t = packed struct(u16) {
    CREAT: bool = false,
    DIRECTORY: bool = false,
    EXCL: bool = false,
    TRUNC: bool = false,
    _: u12 = 0,
}