ada_owned_string

A struct representing a string that must be freed by the caller. Typically used for strings returned by the Ada library that require manual memory management.

extern (C) @nogc nothrow @safe
struct ada_owned_string {}

Members

Variables

data
const(char)* data;

Pointer to the string data.

length
size_t length;

Length of the string.

Meta