TimeDiff

A simple struct to represent time difference.

D's std.datetime does not have a type that is closely compatible with the MySQL interpretation of a time difference, so we define a struct here to hold such values.

Members

Variables

days
int days;
Undocumented in source.
hours
ubyte hours;
minutes
ubyte minutes;
Undocumented in source.
negative
bool negative;
seconds
ubyte seconds;
Undocumented in source.

Meta