Ciovec

data class Ciovec(val buf: Int, val bufLen: Size)(source)

WASI Preview1 type $ciovec

A region of memory for scatter/gather writes.

Parameters

buf

The address of the buffer to be written.

bufLen

The length of the buffer to be written.

Definition:

(typename $ciovec
(record
;;; The address of the buffer to be written.
(field $buf (@witx const_pointer u8))
;;; The length of the buffer to be written.
(field $buf_len $size)
)
)

Constructors

Link copied to clipboard
constructor(buf: Int, bufLen: Size)

Properties

Link copied to clipboard
val buf: Int

(const_pointer u8)

Link copied to clipboard