FFIOption

optional value returned by rorm functions.

Constructors

this
this(T value)
Undocumented in source.

Alias This

asNullable

Members

Enums

State
enum State

tagged union type

Functions

asNullable
auto asNullable()

Converts the FFIOption to a std Nullable!T

embedNull
inout(T) embedNull()
Undocumented in source. Be warned that the author may not have intended to support it.
isNull
bool isNull()
Undocumented in source. Be warned that the author may not have intended to support it.
opAssign
auto ref opAssign(T value)
Undocumented in source. Be warned that the author may not have intended to support it.
opCast
bool opCast()

Returns true if the value is set, otherwise false.

Variables

raw_value
T raw_value;

raw value access

state
State state;

raw state access

Meta