Fdstat
data class Fdstat(val fsFiletype: Filetype, val fsFlags: Fdflags, val fsRightsBase: Rights, val fsRightsInheriting: Rights)(source)
WASI Preview1 type $fdstat
File descriptor attributes.
Parameters
fsFiletype
File type.
fsFlags
File descriptor flags.
fsRightsBase
Rights that apply to this file descriptor.
fsRightsInheriting
Maximum set of rights that may be installed on new file descriptors that are created through this file descriptor, e.g., through path_open
.
Definition:
(typename $fdstat
(record
;;; File type.
(field $fs_filetype $filetype)
;;; File descriptor flags.
(field $fs_flags $fdflags)
;;; Rights that apply to this file descriptor.
(field $fs_rights_base $rights)
;;; Maximum set of rights that may be installed on new file descriptors that
;;; are created through this file descriptor, e.g., through `path_open`.
(field $fs_rights_inheriting $rights)
)
)
Content copied to clipboard