structstd.os.wasi.fdflags_t[src]

Fields

APPEND: bool = false
DSYNC: bool = false
NONBLOCK: bool = false
RSYNC: bool = false
SYNC: bool = false
_: u11 = 0

Source Code

Source code
pub const fdflags_t = packed struct(u16) {
    APPEND: bool = false,
    DSYNC: bool = false,
    NONBLOCK: bool = false,
    RSYNC: bool = false,
    SYNC: bool = false,
    _: u11 = 0,
}