Table of Contents

Description

A structure to handle arbitrary data to be sent over Promises.

Fields

Signature

struct Eio.Data {
    data: void_ptr;
    size: uint;
}

C signature

typedef struct _Eio_Data {
    void *data;
    unsigned int size;
} Eio_Data;